I want to implement pagination in telerik radgridview for vb.net windows form. Instead of assign the datasource one time, I want to get data from mysql on each pagination per page so that it is fast in retrieving data. How can i implement this?
RadGridView supports client-side paging. Hence, RadGridView has a DataSource applied to it which stores all records and the data is represented in multiple pages: https://docs.telerik.com/devtools/winforms/controls/gridview/paging/overview
However, if you want to load data on-demand, it is appropriate to use RadVirtualGrid which also supports paging. The following help articles are quite useful about getting familiar with the control and how to populate it with data: https://docs.telerik.com/devtools/winforms/controls/virtualgrid/overview https://docs.telerik.com/devtools/winforms/controls/virtualgrid/working-with-data/virtualgrid-populating-with-data https://docs.telerik.com/devtools/winforms/controls/virtualgrid/paging/paging-overview