Hi,
My dropdown grid has a checkbox and a button. I want to enable and disable the button based on the value of the checkbox.
In the CheckBoxClick event handler, I want to query the value of the checkbox (the value after the action has taken place). So I call
dropDownGrid.CurrentCell.ConfirmChanges();
This does not seem to work. When I query the value of the checkbox, it is still the old value.
I also tried
dropDownGrid.ConfirmPendingChanges();
and
dropDownGrid.ConfirmChanges();
but same result.
What am I missing here?
Thanks,