What is the event of finishing editing a cell? In my xamdatagrid, the cell editor is xamTextEditor, I want to trigger an event after I have input all numbers, not like the TextChanged event in textbox.
Thanks for help.
Hello Rajib,
I am not sure what do you want to achieve. If you would like to add a custom logic after the grid is edited, you can use the EditModeEnding and EditModeEnded events. May be if you could provide more delays on the matter, I would be able to assist you further.
How does a grid knows that a edit has finished.
Thank you for verifying my last response. Please feel free to let me know if you need further assistance on the matter.
Hello and thank you for posting!
XamDataGrid provides two events EditModeEnding and EditModeEnded that are fired when the user is finished editing a cell: http://help.infragistics.com/Help/Doc/WPF/2014.1/CLR4.0/html/InfragisticsWPF4.DataPresenter.v14.1~Infragistics.Windows.DataPresenter.XamDataGrid_members.html The first event is fired when the ActiveCell is about to end edit mode and could be used for validation: http://help.infragistics.com/doc/WPF/2014.1/CLR4.0/?page=xamDataPresenter_Validating_Edited_Cell_Data_in_xamDataPresenter.html Please feel free to let me know if you have any questions on the matter.