This question is locked. New answers and comments are not allowed.
I'm having some issues with a MVC grid that is using Ajax binding. Here's the scenario - this is a list of Orders:
- Grid has two pages of data - 10 records each.
- User brings up the page and sees Page 1
- User pages to Page 2
- User transitions to the detail page corresponding to the selected Order.
- User hits the back button.
At this point, the grid indicates that it only has 1 page of data and my controller method never fires. Is this expected behavior? Any way to get around it other than to switch to Server binding?
Note: using a window.location statement in the OnRowSelect event to transition to the detail page.
Thanks in advance!