I am using the IGGrid and looking for advice on implementing mutually dependent check boxes.
If the user checks checkbox 2 and checkbox 1 is not checked, I want to check it.
If the user unchecks checkbox 2 and checkbox 1 is checked, i Want to uncheck it.
What is the best way to achieve this?
I have tried capturing various editCell events but these happen after the the row is leaving the edit mode. Ideally I would like to capture the events as the user clicks.
Thanks
Hello Joey,
Than you for posting in our forums.
I guess that you have set editMode to be 'row' (the value by default)
http://help.infragistics.com/jQuery/2012.1/ui.iggridupdating#options
In this case the editCell events are fired for each cell after the the row is entering/leaving the edit mode.
If you want to capture the events as the user clicks you should set the editMode to be 'cell'.
Let us know if you have further questions.