AD
Administrator
Syncfusion Team
January 21, 2004 11:32 PM UTC
Have you tried calling BeginUpdate like this:
this.gridDataBoundGrid2.BeginUpdate(Syncfusion.Windows.Forms.BeginUpdateOptions.Invalidate);
to see if that makes a difference?
You can always call grid.Refresh() after your EndUpdate call to force a refresh. (Or, call grid.Invalidate followed by grid.Update to force a redraw).
DM
damien morton
January 22, 2004 01:56 PM UTC
It turns out that calling grid.Update() immediatly after grid.EndUpdate(true) forces the update through.
I thought that grid.EndUpdate(true) forces an Update() call, but it appears that that functionality isnt working.