i have a client select column and grid paging is on.when i click checkbox in the header it selects all the rows but when i move in the second page result couldnt be selected.and when i return page 1 all my selected row was removed.how can i fix this?
RadGrid loses its current selection when the data is sorted, a new group or filter is added, or when the current page changes. In order to persist the selected rows, you can attach ItemCommand event handler and store the values in a session variable. In the pre-render event of the grid, traverse the rows of the grid and compare their key values to the values saved in the Session variable.
C#:
This code snippet demonstrates how to persist selected rows from the server side. In order to achieve this from the client side and to know more, please visit this documentation.
Hope this helps.