AD
Administrator
Syncfusion Team
February 2, 2004 02:12 PM UTC
This property should be retaining the value of an actively editing cell control. So if your user has typed ''123'' in cell that originally had ''ab'' in it, the active text should be 123 while the cell is still active.
Now if your external datasource changes the value of an actively editing cell, this change will not be reflected unless you do something to cause the current cell to reset this value. Normally, when your external datasource updates, you have to call grid.Refresh or grid.RefreshRange to tell the grid to repaint to show the new values. If you want the currentcell to be refreshed as well, you can call grid.RefreshRange(range, true);. The second parameter tells the grid to refresh the currentcell.