Reputation: 399
I am using Devexpress
.
Is there's any way to get WinsForm GridView
,data with page by page(Paging) like aspGridView
. The problem is I want to bind 10 rows per page.
Upvotes: 0
Views: 5097
Reputation: 18280
Refer: How to create paging on XtraGrid
GridControl does not support the paging mechanism natively. You can introduce this feature by using XPPageSelector , as shown in the How to use the XPPageSelector with the GridControl example.
If your task is to load large data volumes in a grid, the best choice in this scenario would be to use a Server Mode .
References:
Simple Paging in XtraGrid
Paging feature for XtraGrid control
Paging in Devexpress XtraGrid GrdiControl for Windows Application
Does Devexpress GridControl for win forms support paging?
Upvotes: 1