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;
ojasmaru,
This configuration turns on the grid's AJAX functionality. When this is done, requests to change pages in the grid are still performed on the server. The difference is that the request is sent via AJAX, rather than through a postback.