Hello,
To accomplish this, you can create a property in your app that will store the currently selected indices. Then, add a cellSelectionCallback that updates this property every time a new cell is selected. This would look something like:
function UITableCellSelection(app, event)
app.selectedCell = event.Indices;
end
0 Comments
Sign in to comment.