Perspective Table data not updated when subview is selected

Anyone have en solution for this , when opening the subview the row data is not updated, this first happens when you click the row.

There’s an onSubviewExpand Table event handler that you can use to detect which row was expanded, and then force a selection on that row.

2 Likes

Thanks, just added

self.props.selection.selectedRow=event.rowIndex

to configure event for subview, but should not be necessary to add extra code for the table to update

In case you would not like to do this.. if you make an parameter on the subview with an object type like this:

value = { 

columnName : value

}

it will automatically pass it through without any extra bindings or scripting

Displaying a Subview in a Table Row | Ignition User Manual