AD
Administrator
Syncfusion Team
November 3, 2006 10:15 AM UTC
Hi Venkatesh,
Try this code snippet to get the oldvalue/newvalue of the current cell. Here is a code snippet.
GridCurrentCell cc = this.grid.CurrentCell;
int oldvalue = this.grid.Model[cc.RowIndex,cc.ColIndex].CellValue
int newValue = cc.Renderer.ControlValue;
Best Regards,
Haneef