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.
I think you can do this:
private void ultraGrid1_BeforeColumnChooserDisplayed(object sender, BeforeColumnChooserDisplayedEventArgs e) { e.Dialog.ColumnChooserControl.SyncLookWithSourceGrid = false; }
With SynchLookWithSourceGrid set to Default or True I'm still not seeing any source grid ScrollbarLook appearance applied. Our grids have the UseOSThemes set to false and a custom ScrollbarLook appearance set. Any way to get this carried over to the column chooser grid?