Idempiere 4084 (#599)
* IDEMPIERE-4084 Fixed DynamicDisplay on overflow buttons * IDEMPIERE-4084 Clean unused code
This commit is contained in:
parent
d188e563fc
commit
60bcc24bb4
|
@ -32,7 +32,6 @@ import org.adempiere.webui.action.Actions;
|
|||
import org.adempiere.webui.action.IAction;
|
||||
import org.adempiere.webui.component.Combobox;
|
||||
import org.adempiere.webui.component.FToolbar;
|
||||
import org.adempiere.webui.component.Menupopup;
|
||||
import org.adempiere.webui.component.Tabpanel;
|
||||
import org.adempiere.webui.component.ToolBarButton;
|
||||
import org.adempiere.webui.event.ToolbarListener;
|
||||
|
@ -68,7 +67,6 @@ import org.zkoss.zul.A;
|
|||
import org.zkoss.zul.Cell;
|
||||
import org.zkoss.zul.Comboitem;
|
||||
import org.zkoss.zul.Grid;
|
||||
import org.zkoss.zul.Menuitem;
|
||||
import org.zkoss.zul.Popup;
|
||||
import org.zkoss.zul.Row;
|
||||
import org.zkoss.zul.Rows;
|
||||
|
@ -871,7 +869,7 @@ public class ADWindowToolbar extends FToolbar implements EventListener<Event>
|
|||
return true;
|
||||
}
|
||||
|
||||
public void updateToolbarAccess(int xAD_Window_ID) {
|
||||
public void updateToolbarAccess() {
|
||||
if (ToolBarMenuRestictionLoaded)
|
||||
return;
|
||||
|
||||
|
@ -932,13 +930,6 @@ public class ADWindowToolbar extends FToolbar implements EventListener<Event>
|
|||
p.setVisible(false);
|
||||
break;
|
||||
}
|
||||
} else if (p instanceof Menupopup) {
|
||||
for (Component p1 = p.getFirstChild(); p1 != null; p1 = p1.getNextSibling()) {
|
||||
if ( p1 instanceof Menuitem && restrictName.equals((((Menuitem)p1).getValue())) ) {
|
||||
p.removeChild(p1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else if (p instanceof Combobox) {
|
||||
if (restrictName.equals(((Combobox) p).getId())) {
|
||||
p.setVisible(false);
|
||||
|
@ -948,6 +939,22 @@ public class ADWindowToolbar extends FToolbar implements EventListener<Event>
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
if (overflows != null) {
|
||||
//Set visible all overflow buttons with the same condition as above
|
||||
overflows.stream()
|
||||
.filter(button -> !customButtons.contains(button) && !button.isVisible())
|
||||
.forEach(button -> button.setVisible(true));
|
||||
|
||||
for (String restrictName : restrictionList) {
|
||||
for (ToolBarButton p : overflows) {
|
||||
if (restrictName.equals(p.getName())) {
|
||||
p.setVisible(false);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -386,7 +386,7 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
|
|||
toolbar.enableFind(true);
|
||||
adTabbox.evaluate(null);
|
||||
|
||||
toolbar.updateToolbarAccess(adWindowId);
|
||||
toolbar.updateToolbarAccess();
|
||||
updateToolbar();
|
||||
if (query == null && toolbar.initDefaultQuery()) {
|
||||
doOnQueryChange();
|
||||
|
|
Loading…
Reference in New Issue