AD
Administrator
Syncfusion Team
February 25, 2008 12:33 PM UTC
Hi keshav ,
Thank you for your interest in our products.
You can handle the CurrentCellAcceptedChanges event, which will be trigged when the grid saves the changes made to the CurrentCell, after completing the validation.
Here is the code snippet.
this.gridDataBoundGrid1.CurrentCellAcceptedChanges += new CancelEventHandler(gridDataBoundGrid1_CurrentCellAcceptedChanges);
void gridDataBoundGrid1_CurrentCellAcceptedChanges(object sender, CancelEventArgs e)
{
...
...
}
If you want to capture every changes(i.e. on every key strok) try handling the CurrentCellChanged event.
Please let me know if you have any queries.
Regards,
Asem.