Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
950
Changing DataSource data - very slow UltraGrid
posted

I found that UltraGrid is very slow to refresh after i make changes to the attached UltraDataSource. I followed Mike's article about UltraGrid's performance and added            

this.ultraGrid1.BeginUpdate();
this.ultraGrid1.SuspendRowSynchronization();

and corresponding Resume and EndUpdate functions but that didn't improve matters much. After some experimenting I got reasonable performance if I just set DataSource of my grid to NULL, do changes to data source and then assign my data source back to grid.

I just think I'm missing something here.

Parents Reply Children
No Data