morraf
2016-04-10T18:11:31Z
Is it possible implementing a lazy loading mechanism that permits to load cells only when they, or the row that contains the cell, become visible?
Igor/10Tec
2016-04-11T07:44:48Z
We use the CellDynamicContents event for that. You can define the total number of rows, but the CellDynamicContents event will be raised only for cells that become visible in the control's viewport. if you want, you can even cache the values you have already retrieved no to request them again and again.