iDempiere IDEMPIERE-234 Configurable Toolbar. Process button should be invisible for sort tab.
This commit is contained in:
parent
6d7d975d22
commit
1214a9a6c6
|
@ -213,6 +213,7 @@ public class DetailPane extends Panel implements EventListener<Event> {
|
|||
});
|
||||
button.setTooltiptext(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "Delete")));
|
||||
|
||||
if (!tabPanel.getGridTab().isSortTab()) {
|
||||
button = new ToolBarButton();
|
||||
button.setImage(PROCESS_IMAGE);
|
||||
toolbar.appendChild(button);
|
||||
|
@ -223,6 +224,7 @@ public class DetailPane extends Panel implements EventListener<Event> {
|
|||
}
|
||||
});
|
||||
button.setTooltiptext(Util.cleanAmp(Msg.getMsg(Env.getCtx(), "Process")));
|
||||
}
|
||||
|
||||
Hbox messageContainer = new Hbox();
|
||||
messageContainer.setPack("end");
|
||||
|
|
Loading…
Reference in New Issue