Examples of Center


Examples of org.zkoss.zul.Center

    Borderlayout bl = new Borderlayout();
    bl.setHeight("100%");
    bl.setWidth("100%");
    bl.setParent(this);

    Center center = new Center();
    center.setFlex(true);
    center.setParent(bl);

    South south = new South();
    south.setHeight("26px");
    south.setParent(bl);
View Full Code Here

Examples of org.zkoss.zul.Center

    // body
    Borderlayout bl = new Borderlayout();
    bl.setHeight(getModulHeight() + "px");
    bl.setParent(plc);
    Center ct = new Center();
    ct.setSclass("FDCenterNoBorder");
    ct.setStyle("background-color: white");
    ct.setParent(bl);

    anIFrame = new Iframe();
    anIFrame.setHeight("100%");
    anIFrame.setWidth("100%");
    anIFrame.setScrolling(getScrolling());
View Full Code Here

Examples of org.zkoss.zul.Center

    // body
    Borderlayout bl = new Borderlayout();
    bl.setHeight(getModulHeight() + "px");
    bl.setParent(gb);
    Center ct = new Center();
    ct.setSclass("FDCenterNoBorder");
    ct.setStyle("background-color: white");
    ct.setParent(bl);

    anIFrame = new Iframe();
    anIFrame.setHeight("100%");
    anIFrame.setWidth("100%");
    anIFrame.setScrolling(getScrolling());
View Full Code Here

Examples of org.zkoss.zul.Center

    // body
    Borderlayout bl = new Borderlayout();
    bl.setHeight(getModulHeight() + "px");
    bl.setParent(plc);
    Center ct = new Center();
    ct.setSclass("FDCenterNoBorder");
    ct.setStyle("background-color: white");
    ct.setFlex(true);
    ct.setParent(bl);

    iFrame = new org.zkoss.zul.Iframe();
    iFrame.setHeight("200px");
    iFrame.setWidth("100%");
    iFrame.setParent(ct);
View Full Code Here

Examples of org.zkoss.zul.Center

      Borderlayout bl = new Borderlayout();
      bl.setHeight("100%");
      bl.setWidth("100%");
      bl.setParent(this);

      Center center = new Center();
      center.setFlex(true);
      center.setParent(bl);

      South south = new South();
      south.setHeight("52px");
      south.setParent(bl);
View Full Code Here

Examples of org.zkoss.zul.Center

    // body
    Borderlayout bl = new Borderlayout();
    bl.setHeight(getModulHeight() + "px");
    bl.setParent(plc);

    Center ct = new Center();
    ct.setSclass("FDCenterNoBorder");
    ct.setStyle("background-color: white");
    ct.setFlex(true);
    ct.setParent(bl);

    South south = new South();
    south.setBorder("none");
    south.setParent(bl);
View Full Code Here

Examples of org.zkoss.zul.Center

      if (workWithTabs == 1) {

        /* get an instance of the borderlayout defined in the zul-file */
        final Borderlayout bl = (Borderlayout) Path.getComponent("/outerIndexWindow/borderlayoutMain");
        /* get an instance of the searched CENTER layout area */
        final Center center = bl.getCenter();
        // get the tabs component
        final Tabs tabs = (Tabs) center.getFellow("divCenter").getFellow("tabBoxIndexCenter").getFellow("tabsIndexCenter");

        /**
         * Check if the tab is already opened than select them and<br>
         * go out of here. If not than create them.<br>
         */

        Tab checkTab = null;
        try {
          // checkTab = (Tab) tabs.getFellow(tabName);
          checkTab = (Tab) tabs.getFellow("tab_" + tabID.trim());
          checkTab.setSelected(true);
        } catch (final ComponentNotFoundException ex) {
          // Ignore if can not get tab.
        }

        if (checkTab == null) {

          final Tab tab = new Tab();
          tab.setId("tab_" + tabID.trim());

          if (tabLabel != null) {
            tab.setLabel(tabLabel.trim());
          } else {
            tab.setLabel(tabLabel.trim());
          }
          tab.setClosable(true);
          tab.setParent(tabs);

          final Tabpanels tabpanels = (Tabpanels) center.getFellow("divCenter").getFellow("tabBoxIndexCenter").getFellow("tabsIndexCenter")
              .getFellow("tabpanelsBoxIndexCenter");
          final Tabpanel tabpanel = new Tabpanel();
          tabpanel.setHeight("100%");
          tabpanel.setStyle("padding: 0px;");
          tabpanel.setParent(tabpanels);

          /*
           * create the page and put it in the tabs area
           */
          Executions.createComponents(zulFilePathName, tabpanel, null);
          tab.setSelected(true);
        }
      } else {
        /* get an instance of the borderlayout defined in the zul-file */
        final Borderlayout bl = (Borderlayout) Path.getComponent("/outerIndexWindow/borderlayoutMain");
        /* get an instance of the searched CENTER layout area */
        final Center center = bl.getCenter();
        /* clear old center child comps */
        center.getChildren().clear();
        /*
         * create the page and put it in the center layout area
         */
        Executions.createComponents(zulFilePathName, center, null);
      }
View Full Code Here

Examples of org.zkoss.zul.Center

    Borderlayout bl = new Borderlayout();
    bl.setHeight("100%");
    bl.setWidth("100%");
    bl.setParent(this);

    Center center = new Center();
    center.setFlex(true);
    center.setParent(bl);

    South south = new South();
    south.setHeight("26px");
    south.setParent(bl);
View Full Code Here

Examples of org.zkoss.zul.Center

    panelchildren.setParent(panel);

    final Borderlayout bl = new Borderlayout();
    bl.setHeight(this.maxlistBoxHeight + "px");
    bl.setParent(panelchildren);
    final Center center = new Center();
    center.setParent(bl);
    center.setBorder("0");

    this.lbTotalCount = new Listbox();
    this.lbTotalCount.setVflex(true);
    this.lbTotalCount.setMultiple(false);
    this.lbTotalCount.setWidth("99.5%");
View Full Code Here

Examples of org.zkoss.zul.Center

    panelchildren.setParent(panel);

    final Borderlayout bl = new Borderlayout();
    bl.setHeight(this.maxlistBoxHeight + "px");
    bl.setParent(panelchildren);
    final Center center = new Center();
    center.setParent(bl);
    center.setBorder("0");

    this.lbMonthlyCount = new Listbox();
    this.lbMonthlyCount.setVflex(true);
    this.lbMonthlyCount.setMultiple(false);
    this.lbMonthlyCount.setWidth("99.5%");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.