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
100
How do i customize in-built column chosser
posted

I am using in-built column chosser. whtever header backcolor and forecolor setting for Grid column is replacating in column choosser dialog. I want some different backcolor and forecolor in in-built column chosser. How do i do. Thanks in advanced.

 

 

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    I think you can do this: 


            private void ultraGrid1_BeforeColumnChooserDisplayed(object sender, BeforeColumnChooserDisplayedEventArgs e)
            {
                e.Dialog.ColumnChooserControl.SyncLookWithSourceGrid = false;
            }

Children