I am using an Infragistics UltraGrid in a WinForms application.
Which event is raised on ‘check change’ of checkbox in Infragistics UltraGrid?
I am using an Infragistics UltraGrid in a WinForms application. Which event is raised
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The AfterUpdate event of the checkbox is what you’ll want to use.
If you’re not able to trigger it, though, try adding this as well:
By default, just toggling the checkbox doesn’t seem to trigger an Update. By making it enter/exit edit mode, the AfterUpdate should work as you want.
UPDATE: Or, like Vincent suggested, doing the PerformAction on the CellChange event should work, too. The gist is the same.