how to add Info Message to List Action Assignment in Workspace
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hi,
This is my List Action Assignment, the functionality is working find but im trying add g_from.addInfoMessage('hi') but nothing is happening.
How can I add info message so it will be visible to the user in List view.
function onClick() {
var checkedRecords = g_list.getChecked();
//gs.addInfoMessage('hi');
//g_form.addInfoMessage('tttt');
var ga = new GlideAjax('WmTaskBatchPdfExporter');
ga.addParam('sysparm_name', 'isPdf'); // Setting input
ga.addParam('sysparm_sys', checkedRecords);
ga.getXML(ajaxCallback);
}
function ajaxCallback(response) {
var answer = response.responseXML.documentElement.getAttribute("answer");
if (answer) {
top.location.href = answer;
}
}
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
Hi @Alon Grod
g_form.addInfoMessage not available for custom workspaces
Here are some links which might help you
Thanks and Regards,
Mohammed Zakir