hello,
when the grid gets re-sorted, how can I get a listing of the rows within that current state?
let me explain my problem.
I have an external function that links map markers to rows on the grid.
when the map marker is clicked, I call this:
$("#gridContainer").pqGrid("setSelection", { rowIndx: this.DisplayNumber, focus: false });
// set the row where rowIndx = this.DisplayNumber
it works great, until the user sorts the grid in any way - then the MapMarkers vs rowIndx becomes out of sync.
basically what I need to do is to be able to set the row selection based on the value of a cell within the desired row, so something like this maybe?
$("#gridContainer").pqGrid("setSelection", { MapMarker: this.DisplayNumber, focus: false });
// set the row where the row's cell 'MapMarker' = this.DisplayNumber
thanks!!!