Using DevExpress v11.1 I've implemented a List based datasource bound to the gridview dynamically in code behind. Attached to this I use the client side PerformCallback
to populate the grid with data based on user selections. This all works fine.
However, when paging is enabled, the grid will not refresh unless it is rebound to the datasource, which is the expected behavior. If I change the page and then manual force the grid to rebind, it displays the correct page.
I can't find anything in the documentation about which method to implement to fire the page selection client side. This will allow me to fire the PerformCallback
again once the page has been selected.
Any idea/suggestions at what I need to be looking at to achieve this?