How to reset DataSource in GridDataBoundGrid

Hi, I have an error when resetting DataSource in GridDataBoundGrid because the current cell of GridDataBoundGrid is focusing. Please help me to solve this problem. Thanks, Len.

1 Reply

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.

Loader.
Up arrow icon