How to turn off default paging in the GridGroupingControl?
Default paging can be turned off by either setting the CurrentPage property to 0 or by setting the PageSize property to -1. Please refer the below code snippet which illustrates this:
C#
this.GridGroupingControl1.PageSize = -1;
//this.GridGroupingControl1.CurrentPage = 0;
VB
Me.GridGroupingControl1.PageSize = -1
'Me.GridGroupingControl1.CurrentPage = 0