AD
Administrator
Syncfusion Team
June 9, 2004 06:40 AM UTC
One approach would be to change the DataSource directly instead of trying to change the DataSource through the grid.
int gridRowIndex = ???;//what ever grid row you want to set
int positionInDataTable = gridRowIndex - 1;
this.dt.Rows[positionInDataTable]["City"] = newValue; //change the city field
Making the change directly to the datasource should be immediately reflected in the grid display.