ASPxGridview Dynamically Change Page Size

aspxgridviewdevexpress

I'm having an issue with the aspxgridview control. I have an aspxcombobox which allows the user to set a page size. Can anyone provide a proper example to achieve this. I've had it almost working but I get issues where the rows turn out to be blank.

My report is generated by clicking the a button, and I would also like them to change the page size without regenerating the report using callback

Best Answer

You will find this example available at:

How to create a custom pager for the ASPxGridView with the "Selecting a page size" feature

Please note, the ASPxGridView is a pure server side control, and thus you won't be able to change its PageSize property without sending a request to the server.

Related Topic