Unselect row in table, or change selectRow to null

Hi! Is it possible to change the selected row in a table to null (or unselect it)? I need a row to be clicked more than once during some interactions with the information. When a row is clicked the first time it triggers the event handler “onRowSelect”, but the next clicks on the same row don’t trigger the event handler.

What are you trying to accomplish? Perhaps there’s some other interaction that will work for you.

You might want to consider using a Repeater , which would allow you greater flexibility - including being able to click on an item multiple times.

Thanks Yisrael. It is a query tool, and the filtered information populates a table. If I select in the table the first row and then change the query, the new information in first row is unclickeable. After many attempts and your answer, definitively your idea is the best solution, using a repeater instead of a table.

i found a workaround by using onCellSelect which triggers an event handler also when clicked a second time

you can let rowIndex = event.cellRowIndex,
then use .rows property to get teh table’s rowData.