Do we have any ability to "Select / Unselect All" in ColumnChooserControl.? I have a grid with 60 columns. The end user would like unselect all columns first and choose only the columns they needed.
Hi,
You can set the columns to hidden. The columns will not appear in the grid, they will appear in the column chooser and the user can hide/show them. The following code snippet with set the column CustomerID to hidden when added in the InitializeLayout.
e.Layout.Bands[0].Columns["CustomerID"].Hidden = true;
Magued
I'm aware of your solution but I would like to know if you have any option to select/unseclect all columns on the Grid. I could add a check box outside the Grid context and do this but before going with this approach, want to hear from you if there is an elegant solution.
Thank you.