Im trying to get the selected element when the user click on any row. For that, I'm using the selectionChange event, but that only returns the index and the selected status of the element. Since I also have the pagination and sorting active, I can't use that index to get the current element, or at least I don't know how to do it.
The data var I use in to feed the grid is this:
this.gridData = process(this.elements, this.state);
Where elements is my original data array and state is the State object with the settings (skip, take, sort).
Any ideas?
page * items_per_page + indexis your real index in sorted items... - Seididieci