Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
270
Column Chooser
posted

I'm working with a Multi-Band grid and was wondering if there is anyway to hide the "band" selection item on the Column Chooser?  When the user clicks the button on the band to display the Column Chooser, I want it to only allow them to change the columns specific to that band.

Parents
  • 469350
    Verified Answer
    Offline posted

    Hi,

    I think this will do it:


            private void ultraGrid1_BeforeColumnChooserDisplayed(object sender, BeforeColumnChooserDisplayedEventArgs e)
            {
                e.Dialog.ColumnChooserControl.Style = ColumnChooserStyle.AllColumnsWithCheckBoxes;
            }

Reply Children