- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2017 05:06 AM
I am able to get the selected rows in a list using the following code:
function onClick()
{
var checked = g_list.getChecked();
var rowsArray = new Array();
rowsArray = checked.split(",");
}
The question is how can I access the individual values on each column of the row?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2017 02:43 AM
Got it working, in the example code the problem was in the variable name 'instanceVal' didn't match 'instance'.
Client Side: Pass the sys_id of the row using a UI Action.
Server Side: Return the column of the row detected by sys_id.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2017 02:43 AM
Got it working, in the example code the problem was in the variable name 'instanceVal' didn't match 'instance'.
Client Side: Pass the sys_id of the row using a UI Action.
Server Side: Return the column of the row detected by sys_id.