Table row remains highlighted even after setting selectedRow = -1

Hi everyone,

I have a Table component in Ignition Perspective. On a button click, I try to clear the table selection by setting:

self.getSibling("Table").props.selection.selectedRow = -1

However, even though the property updates, the previously selected row still appears highlighted in the UI.

I believe you need to also set enableRowSelection to false. Then add a change script that detects that and sets it back to true.

1 Like

Don't assign to .selectedRow.