SmartClient Version: v9.0p_2013-10-05/LGPL Development Only (built 2013-10-05)
Browser: IE9
Can you tell me how to change the menu class for the list grid header menu (the one with things like sort, freeze, group, columns on it)?
I have my own menu class called PMDarkMenu. It is registered and I am using it on other things like Tabs just fine.
I've tried several different things to set the class used for this menu, none of which have worked. Here's what I've tried (I know that some of these don't make any sense...). This code is in the constructor of my class that extends ListGrid.
Is there another object I can set the menu class on to customized the look of this menu?
Browser: IE9
Can you tell me how to change the menu class for the list grid header menu (the one with things like sort, freeze, group, columns on it)?
I have my own menu class called PMDarkMenu. It is registered and I am using it on other things like Tabs just fine.
I've tried several different things to set the class used for this menu, none of which have worked. Here's what I've tried (I know that some of these don't make any sense...). This code is in the constructor of my class that extends ListGrid.
Code:
Button headerButtonProperties = new Button(); headerButtonProperties.setMenuConstructor(PMDarkMenu.class.getName()); setHeaderButtonProperties(headerButtonProperties); Button headerMenuButtonProperties = new Button(); headerMenuButtonProperties.setMenuConstructor(PMDarkMenu.class.getName()); setAutoChildProperties("headerMenuButton", headerMenuButtonProperties); setMenuConstructor(PMDarkMenu.class.getName());
Comment