Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
210
Ultra web grid paging at client side
posted

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

 

  • 40
    posted

    Did you try following two properties to get client side paging?

    ultraWebGrid.Browser = BrowserLevel.Xml;

    ultraWebGrid.DisplayLayout.LoadOnDemand =

    LoadOnDemand.Xml;

  • 45049
    Verified Answer
    posted

    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.