Hi friends ,
I want to do paging at client side can any one suggest me how to achieve this .
Piece of code for this will be more helpful
WebGrid Paging must be done on the server, even with EnableInternalRowsManagement="true".
The simplest option to avoid a postback is to enable the grid's AJAX functionality (XML load-on-demand). Other options are to wrap the grid in a WARP or UpdatePanel. Either way, the rows for the new page will be fetched through AJAX, not via a postback.
Hi,
I have the same question:
How I can prevent the page to be posted back when PageIndexChanged.
I have set the property EnableInternalRowsManagement="true", so all rows in the grid are sent to the browser and I don't need post back to view other page.
Thanks, Iva
Set DisplayLayout.Pager.AllowPaging to True. There are other settings in this Pager namespace you can play with to control the paging.