Refs #9831 / IDEMPIERE-3999 - menu tree missing info window filter

This commit is contained in:
Murilo Habermann Torquato 2019-06-28 09:59:30 -03:00
parent 58da0ce187
commit 4284ae73ed
1 changed files with 10 additions and 0 deletions

View File

@ -84,6 +84,16 @@ public class MenuTreeFilterPanel extends Popup implements EventListener<Event>,
form.addEventListener(Events.ON_CHECK, this);
box.appendChild(form);
Checkbox info = new Checkbox();
if (ThemeManager.isUseFontIconForImage())
info.setIconSclass("z-icon-Info");
else
info.setImage(ThemeManager.getThemeResource("images/mInfo.png"));
info.setChecked(true);
info.setId("info");
info.addEventListener(Events.ON_CHECK, this);
box.appendChild(info);
Checkbox single = new Checkbox();
single.setLabel(Msg.getMsg(Env.getCtx(), "FlatView"));
single.setId("flatView");