This selected row is index=25 in the original dataset:
However, it is index=59 in the sorted table. In my case, I'd like to move the table to the page of the selected row from a query, which is executed when a user selects one of those rows from a map.
AFAICT, there aren't any fields on the Table component which provide you with the index of the selected row in the sorted table. And there also aren't any fields that provide you with the sorted dataset. The only option I can think of is to take the Table's data, sort it, then find the index of this row. Is there a better way?
You are correct - the table.selectedRow.index property maps to the index of the selected row in the original dataset, not the sorted version displayed in the table. Iβve fiddled around a bit and canβt find anything that would solve your issue directly
There are a couple of workarounds that I can think of - the easiest one would be to filter the table based on the triggered query, instead of selecting a particular row. Another one would be to get the index of the row you want to select via filtering the original dataset through JS.