/****************************************************************************** * Product: iDempiere ERP & CRM Smart Business Solution * * Copyright (C) 2014 T.G.I. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * *****************************************************************************/ package org.adempiere.webui.util; import org.adempiere.webui.ClientInfo; import org.zkoss.zk.au.out.AuScript; import org.zkoss.zk.ui.HtmlBasedComponent; import org.zkoss.zk.ui.util.Clients; import org.zkoss.zul.Grid; import org.zkoss.zul.Listbox; import org.zkoss.zul.Tree; /** * Helper method to set width and height of component. * @author hieplq * */ public class ZKUpdateUtil { /** * @param comp * @param value */ public static void setHeight (HtmlBasedComponent comp, String value){ if (comp.getVflex() != null) comp.setVflex(null); comp.setHeight(value); } /** * @param comp * @param value */ public static void setWidth (HtmlBasedComponent comp, String value){ if (comp.getHflex() != null) comp.setHflex(null); comp.setWidth(value); } /** * @param comp * @param value */ public static void setHflex (HtmlBasedComponent comp, String value){ if (comp.getWidth() != null) comp.setWidth(null); comp.setHflex(value); } /** * @param comp * @param value */ public static void setVflex (HtmlBasedComponent comp, String value){ if (comp.getHeight() != null) comp.setHeight(null); comp.setVflex(value); } /** * @param comp * @param value */ public static void setVflex (Listbox comp, boolean value){ if (comp.getHeight() != null) comp.setHeight(null); comp.setVflex(value); } /** * @param comp * @param value */ public static void setVflex (Grid comp, boolean value){ if (comp.getHeight() != null) comp.setHeight(null); comp.setVflex(value); } /** * @param comp * @param value */ public static void setVflex (Tree comp, boolean value){ if (comp.getHeight() != null) comp.setHeight(null); comp.setVflex(value); } /** * Use client side script to set height of component to the corresponding height define in css. * @param component */ public static void setCSSHeight(HtmlBasedComponent component) { String script = "setTimeout(function() { let e = jq('#" + component.getUuid() + "');"; script = script + "let b=zk.Widget.$('#" + component.getUuid() + "'); "; script = script + "b.setHeight(e.css('height')); }, 50 );"; Clients.response(new AuScript(script)); } /** * Use client side script to set width of component to the corresponding width define in css. * @param component */ public static void setCSSWidth(HtmlBasedComponent component) { String script = "setTimeout(function() { let e = jq('#" + component.getUuid() + "');"; script = script + "let b=zk.Widget.$('#" + component.getUuid() + "'); "; script = script + "b.setWidth(e.css('width')); }, 50 );"; Clients.response(new AuScript(script)); } /** * Set height of popup, window or dialog to heightInPixel. Set height to 100% if heightInPixel > desktopHeight * @param comp * @param heightInPixel Height in Pixel */ public static void setWindowHeightX(HtmlBasedComponent comp, int heightInPixel){ int desktopHeight = ClientInfo.get().desktopHeight; if (desktopHeight > 0 && desktopHeight < heightInPixel) { setHeight(comp, "100%"); } else { setHeight(comp, heightInPixel+"px"); } } /** * Set width of popup, window or dialog to widthInPixel. Set width to 100% if widthInPixel > desktopWidth * @param comp * @param widthInPixel */ public static void setWindowWidthX(HtmlBasedComponent comp, int widthInPixel){ int desktopWidth = ClientInfo.get().desktopWidth; if (desktopWidth > 0 && desktopWidth < widthInPixel) { setWidth(comp, "100%"); } else { setWidth(comp, widthInPixel+"px"); } } }