AD
Administrator
Syncfusion Team
January 19, 2004 06:58 AM UTC
You only need to work through the renderer when the cell is the currentcell. If the cell is not the currentcell, then you can try setting
grid.Model[rowIdx, colIdx].Text = "SomeText";
On potential problem may occur if the current row is not already being edited. In this case, you should call grid.Binder.BeginEdit() for a GridDataBoundGrid before you set the value. But since the currentcellchanged is what triggers this code, I would not think that this would be a problem in your case.