I have a grid with paging. Let's say it's set to 50 rows per page.
If I'm on page 1 and run SelectRowAsync(25), it works great.
if I'm on page 2 and run SelectRowAsync(75), nothing gets selected.
If I'm on page 2 and run SelectRowAsync(25), the 25h row ON PAGE 2 gets selected.
How can I set a row that's not on the current page?
I need this for both editing and adding a record with an external form. After the edit or edit, I'm successfully updating the grid's datasource and I am successfully grabbing the correct index. I need the record I just edited or added selected. Again, it works great if I'm on page 1 and the index is within that page.
How do I do select a row that's not on the current page?