- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hi All,
when user click ui action, I want to retrieve the sysids selected in the list view of workspace. g_list.getchecked is not working. In Below script alert message is not firing
Thanks in Advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Hello @Sachin G K1 ,
just refer this code :
function onClick()
{
var data=g_list.getChecked();
alert(data)
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
@Sachin G K1 , May I know what type of action assignment you have created this one. I mean, is it list actions, related list actions?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
@Bhanu Vamshi list action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
@Sachin G K1 , Make sure to check the "Record selection" field checked on List Action Assignment form and use the below script.
function onClick() {
alert(g_list.getChecked());
}
This script will return comma separated checked sys_ids and I hope you created the Action Assignment from All>Now Experience Framework > Declarative Actions > List Actions
If my answer is helpful, please mark this as helpful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
@Bhanu Vamshi Not working, can you try in Zurich version.

