Hi,
In our application, we fetch data row-wise and then bind it to the grid after it reaches a particular count (say 1000). After binding the first chunk of data, we retrieve the next chunk.
The layout that we apply to the grid has summaries set on certain columns. The values of these summaries keep getting updated as the data gets bound to the grid.
What we'd like to know is, is there any way to suspend the calculation of these summaries till the entire data is loaded?
Do let us know,
Thanks in advance
I'm pretty sure the summaries will not be calculated and the process of adding the rows will be a lot more efficient in general if you make use of the
BeginUpdate/EndUpdate
and
SuspendRowSynchronization/ResumeRowSynrchonization
methods.
To learn more about these methods, please visit our online help documents page by clicking here. Please let us know if you have additional questions.