Coppermill
Coppermill

Reputation: 6794

Lazy loading Infragistics Ultragrid

Does anyone know if the Infragistics UltraGrid for Windows Forms support lazy loading? If so, how to do that?

Upvotes: 1

Views: 2613

Answers (2)

Patrick Hofman
Patrick Hofman

Reputation: 156998

This is what I used to lazy-load the data in my grids.

  1. Create a UltraGrid.
  2. Bind it to a UltraDataSource control.
  3. Handle the 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

Coppermill
Coppermill

Reputation: 6794

Yes it can be done with the Infragistics WinForm.

Upvotes: 0

Related Questions