Hi Yazid,
Thanks for using Syncfusion product.
By default, GridDataBoundGrid does not have the paging support. So, we would suggest to use the GridGroupingControl which has the paging support. Please refer the below code example,
Code example
Pager pager = new Pager();
pager.Wire(this.gridGroupingControl1); |
Please refer the below UG link,
We can set the number of records to visible in the page by using PageSize property. Please refer to the below code example,
Code example
Pager pager = new Pager();
pager.PageSize = 10;
pager.Wire(this.gridGroupingControl1); |
Please refer the below UG link,
If you want to load the record in Pager on demand, it does not have the support for loading the records on demand. Already, we have logged feature report for “Loading the records for each page on demand directly from the server” for GridGroupingControl. So, this feature will be available in any of our upcoming releases.
Regards,
Mohanraj G