Hi, i am curious how it is possible to get the value of a specific cell from a table to use it in a script? I need to get the value of the cell in the “ID”-Column from a selected row. Later on i use that value to trigger a db-procedure to delete that entry.
EDIT: Found a solution…pretty easy. If there is a better way let me know
Script:
var members = table1.getSelectedRowHierarchyMembers();
var index = members[0].caption;