Reputation: 6794
Does anyone know if the Infragistics UltraGrid for Windows Forms support lazy loading? If so, how to do that?
Upvotes: 1
Views: 2613
Reputation: 156998
This is what I used to lazy-load the data in my grids.
UltraGrid
.UltraDataSource
control.CellDataRequested
of the UltraDataSource
. Here you can put in your own code to lazy load the data from your external data source, a web service, database, etc.Upvotes: 2