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
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
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.