Hi Rahul,
If you want to get notify when enter key is pressed through keyboard means please hook CurrentCellEndEdit event of the SfDataGrid. If you want to get notify whenever the value is changed in GridCell means please hook the ValueChanged event of the SfDataGrid.
Code snippet :
|
…. dataGrid.CurrentCellEndEdit += DataGrid_CurrentCellEndEdit;
dataGrid.ValueChanged += DataGrid_ValueChanged;
….
private void DataGrid_CurrentCellEndEdit(object sender, GridCurrentCellEndEditEventArgs e)
{
}
private void DataGrid_ValueChanged(object sender, Syncfusion.SfDataGrid.XForms.ValueChangedEventArgs e)
{
} |
We hope this helps, please let us know if you need further assistance on this.
Regards,
Karthik Raja