Package org.zkoss.zul

Examples of org.zkoss.zul.Panel


    final Tabpanel listTab = (Tabpanel) Path
        .getComponent("/outerIndexWindow/secLoginlogMainWindow/tabPanelLoginList");
    listTab.getChildren().clear();

    final Panel panel = new Panel();
    final Panelchildren pChildren = new Panelchildren();

    panel.appendChild(pChildren);
    listTab.appendChild(panel);

    // call the zul-file and put it on the tab.
    Executions.createComponents("/WEB-INF/pages/sec_loginlog/secLoginLogList.zul", pChildren, null);
View Full Code Here


    final Tabpanel listTab = (Tabpanel) Path
        .getComponent("/outerIndexWindow/secLoginlogMainWindow/tabPanelLoginStatistic");
    listTab.getChildren().clear();

    final Panel panel = new Panel();
    final Panelchildren pChildren = new Panelchildren();

    panel.appendChild(pChildren);
    listTab.appendChild(panel);

    // call the zul-file and put it on the tab.
    Executions.createComponents("/WEB-INF/pages/sec_loginlog/secLoginLogStatistic.zul", pChildren, null);
View Full Code Here

    Window win = new Window();
    win.setBorder("none");
    win.setSclass("OT-DashboardWindow");
    win.setParent(this);

    Panel pl = new Panel();
    pl.setBorder("normal");
    pl.setClosable(false);
    pl.setParent(win);
    Caption cap = new Caption();
    cap.setImage(iconPath);
    cap.setLabel(title);
    cap.setStyle("padding: 0px;");
    cap.setParent(pl);
View Full Code Here

    Window win = new Window();
    win.setBorder("none");
    win.setSclass("OT-DashboardWindow");
    win.setParent(this);

    Panel pl = new Panel();
    pl.setBorder("normal");
    pl.setClosable(false);
    pl.setParent(win);
    Caption cap = new Caption();
    cap.setImage(iconPath);
    cap.setLabel(title);
    cap.setStyle("padding: 0px;");
    cap.setParent(pl);
View Full Code Here

    final Div div = new Div();
    div.setHeight("100%");
    div.setWidth("100%");

    final Panel panel = new Panel();
    panel.setTitle(Labels.getLabel("panelMonthlyCount.Title") + " " + (aMonth + 1) + "/" + aYear);
    panel.setBorder("none");
    panel.setHeight("100%");
    panel.setWidth("100%");
    panel.setParent(div);
    final Panelchildren panelchildren = new Panelchildren();
    panelchildren.setParent(panel);

    final Borderlayout bl = new Borderlayout();
    bl.setHeight(this.maxlistBoxHeight + "px");
View Full Code Here

    final Div div = new Div();
    div.setHeight("100%");
    div.setWidth("100%");

    final Panel panel = new Panel();
    panel.setTitle(Labels.getLabel("panelDailyCount.Title") + ": " + getDateTime(aDate));
    panel.setBorder("none");
    panel.setHeight("100%");
    panel.setWidth("100%");
    panel.setParent(div);

    final Panelchildren panelchildren = new Panelchildren();
    panelchildren.setParent(panel);

    final Borderlayout bl = new Borderlayout();
View Full Code Here

    map.put("rowSizeOrderPositions", new Integer(10));

    final Tabpanel orderTab = (Tabpanel) Path.getComponent("/window_customerDialog/tabPanelCustomerOrders");
    orderTab.getChildren().clear();

    final Panel panel = new Panel();
    final Panelchildren pChildren = new Panelchildren();

    panel.appendChild(pChildren);
    orderTab.appendChild(panel);

    // call the zul-file and put it on the tab.
    Executions.createComponents("/WEB-INF/pages/order/orderList.zul", pChildren, map);
  }
View Full Code Here

    map.put("rowSizeOrderPositions", new Integer(10));

    Tabpanel chartTab = (Tabpanel) Path.getComponent("/window_customerDialog/tabPanelCustomerDialogChart");
    chartTab.getChildren().clear();

    Panel panel = new Panel();
    Panelchildren pChildren = new Panelchildren();

    panel.appendChild(pChildren);
    chartTab.appendChild(panel);

    // call the zul-file and put it on the tab.
    Executions.createComponents("/WEB-INF/pages/customer/customerChart.zul", pChildren, map);
View Full Code Here

    Window win = new Window();
    win.setBorder("none");
    win.setSclass("OT-DashboardWindow");
    win.setParent(this);

    Panel pl = new Panel();
    pl.setBorder("normal");
    pl.setClosable(false);
    pl.setParent(win);
    Caption cap = new Caption();
    cap.setImage(iconPath);
    cap.setLabel(title);
    cap.setStyle("padding: 0px;");
    cap.setParent(pl);
View Full Code Here

    win = new Window();
    win.setBorder("none");
    win.setSclass("OT-DashboardWindow");
    win.setParent(this);

    youTubePanel = new Panel();
    youTubePanel.setBorder("normal");
    youTubePanel.setClosable(false);
    youTubePanel.setParent(win);
    Caption cap = new Caption();
    cap.setImage(iconPath);
View Full Code Here

TOP

Related Classes of org.zkoss.zul.Panel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.