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
Check with following -
mobjCServerGrid.DisplayLayout.EnableInternalRowsManagement = true ;
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