Hallo,
I have an ultragrid with a lot of iterating bands: Also BandA's childs are BandBs and that childs a BandAs...
Now I have a ColumnsChooser and I want to hide columns from BandB. But from all BandBs. I didn't found any event on the ColumnChooser or UltraGrid. Is there a way to implement this?
What you could do is use the AfterColPosChanged event of the grid to track when the user makes a change to the hidden state of a column and then copy that change to all of the other bands.
Thanks, thats exactly what I need.