I use showcolumnchooser.
I want to hide some bands in the column chooser, and show only the upper band.
e.g. I want the user to be able to choose only from one of the bands.
Is it possible?
You can hide bands in the column chooser. Check out the code snippet that uses the InitializeLayout event below.
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Bands[x].ExcludeFromColumnChooser = ExcludeFromColumnChooser.True; }