If I want to have the leave action in the cell in ultragrid, what should be the event? Moreover is it possible to trigger this action only when the text in the cell is changed?
Hello,
I am just checking about the progress of this issue. Let me know If you need my further assistance.
Thank you for using Infragistics Components.
Could you please clarify what you mean by “Cell leave Action”? If you want to know if the user enters in edit mode for a cell and then goes to another cell or row, you could use the BeforeExitEditMode event of the grid. In this event you can also check if the value of the cell was changed or not by using the following property of the grid:
ultraGrid1.ActiveCell.DataChanged
If you want to know more about the event please follow this link:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2012.2/CLR4.0/html/Infragistics4.Win.UltraWinGrid.v12.2~Infragistics.Win.UltraWinGrid.UltraGrid~BeforeExitEditMode_EV.html
It is also useful and I recommend you to take a look on BeforEntereditMode event of the grid:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2012.2/CLR4.0/html/Infragistics4.Win.UltraWinGrid.v12.2~Infragistics.Win.UltraWinGrid.UltraGrid~BeforeEnterEditMode_EV.html
Please let me know if you have any additional questions.