Hi,
I want to use the paging feature of asp.net ultra web grid.But I don't find any client side paging.When I use paging on grid for each new page click it makes server event/ajax event.Which is very expensive in my application.Can you tell me do I have such feature or can I implement with java script on client side.
Thanks in advance,
Shravan
Did you try following two properties to get client side paging?
ultraWebGrid.Browser = BrowserLevel.Xml;
ultraWebGrid.DisplayLayout.LoadOnDemand =
LoadOnDemand.Xml;
WebGrid paging requires server-side processing. If the gri'ds AJAX functionality is enabled, this request is made via AJAX; otherwise, a regular postback is triggered.
Paging in WebGrid is designed to limit the data sent from the server to the client. This is why paging requires server-side processing - the information for other pages simply doesn't exist on the client. Even with EnableInternalRowsManagement set to true, these other pages are stored in ViewState, and have no other client-side presence.