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
35
Problem in Paging with outlookGroupby
posted

Hello,

I have used a Grid (UltraWebGrid) In that i m using the paging & GroupBy option both. But when i made a Group on any column the paging is disable. That is Page numbers are not displayed after grouping.

please suggest any solution.

Thanks

  • 485
    posted

    Check with following -

    mobjCServerGrid.DisplayLayout.EnableInternalRowsManagement = true ;

    Thanks

  • 5
    posted

    Hi,

     Had the same issue myself.Solved it by the using the ultragrid event "GroupColumn" to max out the page size.

    UltraWebGrid1.DisplayLayout.Pager.PageSize = 10000;

    UltraWebGrid1.DataBind();

    Regards