Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2805
event of cell value changed
posted

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.

Parents
No Data
Reply
  • 17475
    Verified Answer
    Offline posted

    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.

Children