- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2018 05:57 AM
I know it can be done in current.sys_id in server side script but I wanted to get it from the client side. I am done getting the information when I am in the form using the g_form.getUniqueValue() but what I wanted when I trigger a UI Action in List context menu and get the sys_id in my client side script.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2018 05:59 AM
g_list.getChecked()
provides Comma-separated list of the sys_ids for the items that are checked in the list.
also try
var sysId = typeof rowSysId == 'undefined' ? gel('sys_uniqueValue').value : rowSysId;
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2018 06:37 AM
You are awesome sir! Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2018 06:39 AM
Please mind send me a link of documentation about list objects and variables like rowSysId. Thanks!