AD
Administrator
Syncfusion Team
January 20, 2005 08:40 AM UTC
Before resetting the datasource, add code such as:
if(this.grid.CurrentCell.isEditing)
this.grid.CurrentCell.EndEdit();
if(this.grid.Binder.IsEditing)
this.grid.Binder.EndEdit();
this.grid.CurrentCell.MoveTo(-1, -1);
to see if this avoids the problem you are having.