Hi Team,
I have a tabbed container with 2 tabs. A table exists in each of these tabs.
On clicking a row in table1 of tab1, I have the code to automatically filter the contents of table2 in tab2 based on selectedRow.
On tab 2, I now want a button to reset filters (remove filter selections from tab 1) and show all rows.
I tried with
adding a script on button click - table1.selectRow(null);
and updating the source query where clause -
([id] = {{ table1.selectedRow.id}} OR {{ !table1.selectedRow ? 1 : 0 }} = 1)
but no luck.
Could you help me on this?