- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-07-2017 10:02 PM
Hi all,
I have a List choice UI action that utilizes both client and server side code.
I want to be able to get the chosen records in the server side code but g_list.getChecked() does not work server side. How can I achieve this?
Thanks for any help.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2017 05:06 PM
Check the code in this OOTB global list Delete UI action and see if it helps..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2017 02:11 AM
Regards,
Shloke
Regards,
Shloke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2017 02:34 PM
lol
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-03-2022 12:47 AM
Hi
I have tried for same one of my custom table ui action g_list.getTableName() not working g_list after that given Action mane and var tablename = current.getTableName() ; working fine another 2 more lines
//var tblName = g_list.getTableName(); //To get the table name ------> Not working And Glidelist also not working for custom tables
var tblName = current.getTableName(); ---> this like is working
selSysIds = g_list.getChecked(); -- Not working
sysIdList = selSysIds.split(',');
numSel = sysIdList.length; its not working ... given logs and validated .
Anyone knows help me