Hi,
Is there any event I can catch when UltraGridColumn.Hidden is changed?
The AfterColPosChanged doesn't fired.
Regards,Jason
How is the column Hidden property getting set? The user can't hide a column unless you are using the ColumnChooser, in which case the AfterColPosChanged event should fire. If it's not firing, something is wrong.
If you are setting the Hidden property in code, then the event might not fire, but since your code is setting the property, you really don't need an event to tell you that this happened.
Way does the event not fire when the Hidden property is set in code??? Does not make sense to me and it makes me suspect that the event is not well encapsulated. I want to catch the event no matter how the column was hidden/shown. The way it is now, I have to observe both the event and my code.