Hi, I would like to know how can I change the css style of a disabled menu item.
I've try to set it in a constructor like thatmyNavigationMenuItem(String textCode, String goString, boolean splitBefore, boolean disabled) { super(UtilGui.getTranslationText(textCode), goString, null, splitBefore);
super.setDisabled(disabled);
// BUG style not loaded
super.setDisabledStyleClass("disableMenu");
}
my best regards

