Examples of VerticalLayoutData


Examples of com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData

  {
    super(editorRightStore, leftProperties, rightProperties, leftColumnConfigs, rightColumnConfigs, leftFunctionalities,
        rightFunctionalities, false, true, dualFunctionalities);
    basePagingLoader = initializePagingLoader(getLeftStore());
    UIUtils.updateBottomToolbarStyle(basePagingLoader.getPagingToolbar());
    getLeftEditorGrid().getVerticalLayoutContainer().add(basePagingLoader.getPagingToolbar(), new VerticalLayoutData(1, -1));
  }
View Full Code Here

Examples of com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData

    final VerticalLayoutContainer northPanel = new VerticalLayoutContainer();
    northPanel.setBorders(false);
    tb = new ToolBar();
    updateMainToolBar(tb);
    northPanel.add(tb, new VerticalLayoutData(1, -1));

    final StringBuffer sb = new StringBuffer();
    sb.append("<div class='application-title-container'>");
    sb.append("<img src='" + GWT.getHostPageBaseURL() + DkMain.i18n().appIconPath()).append("'/>");
    sb.append("<span class='app-title'>").append(DkMain.i18n().appTitle()).append("</span>");
    sb.append("<span class='app-title-info'>").append(getAppInfoLabel()).append("</span>");
    sb.append("</div>");
    final HTML titlePanel = new HTML(sb.toString());
    northPanel.add(titlePanel, new VerticalLayoutData(1, -1));

    final BorderLayoutData northBorderLayoutData = new BorderLayoutData(63);
    mainBorderLayoutContainer.setNorthWidget(northPanel, northBorderLayoutData);

    // HYPERLINK FORM PANEL -----------------------------------------------------------------
View Full Code Here

Examples of com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData

        selection.addAll(sm.getSelectedItems());
      }
    });

    final VerticalLayoutContainer contentPanelLayoutContainer = new VerticalLayoutContainer();
    contentPanelLayoutContainer.add(basePagingLoader.getPagingToolbar(), new VerticalLayoutData(1, -1));
    contentPanelLayoutContainer.add(gridPaging, new VerticalLayoutData(1, 1));
    contentPanelLayoutContainer.setBorders(true);
    dialogBox.add(contentPanelLayoutContainer);
  }
View Full Code Here

Examples of com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData

    final String connectionMessage = DkMain.controller().getConnectionPopupMessage();
    if (connectionMessage != null)
    {
      final InlineLabel text = new InlineLabel(connectionMessage);
      // ("font-weight", "bold");
      final VerticalLayoutData varticalLayoutData = new VerticalLayoutData(1, -1);
      varticalLayoutData.setMargins(new Margins(5, 0, 10, 0));
      verticalLayoutContainer.add(text, varticalLayoutData);
    }
    dialogBox.add(verticalLayoutContainer);
  }
View Full Code Here

Examples of org.gwtoolbox.widget.client.panel.layout.VerticalLayoutData

    public VerticalLayoutSample() {

        VerticalLayout layout = new VerticalLayout();
        DOM.setStyleAttribute(layout.getElement(), "borderBottom", "1px solid blue");
        layout.addWidget(createContent("height: 70px", "#CCFFCC", "BLUE"), new VerticalLayoutData().setHeight("70px"));
        Widget content = createContent("height: 50%", "#FFFBA3", "GREEN");
        content.setVisible(true);
        layout.addWidget(content, new VerticalLayoutData().setHeight("50%"));
        layout.addWidget(createContent("height: *", "#FFC0CB", "black"));

        initWidget(layout);
    }
View Full Code Here

Examples of org.gwtoolbox.widget.client.panel.layout.VerticalLayoutData

    public FixedVerticalPanelSamplePane() {

        FixedVerticalPanel svp = new FixedVerticalPanel();
        DOM.setStyleAttribute(svp.getElement(), "borderBottom", "1px solid blue");
        svp.addWidget(createContent("height: 70px", "#CCFFCC", "BLUE"), new VerticalLayoutData().setHeight("70px"));
        Widget content = createContent("height: 50%", "#FFFBA3", "GREEN");
        content.setVisible(true);
        svp.addWidget(content, new VerticalLayoutData().setHeight("50%"));
        svp.addWidget(createContent("height: *", "#FFC0CB", "black"));
//        svp.addWidget(createContent("height: 50px", "#E6E6FA"), new VerticalLayoutData().setHeight("50px"));
//        svp.addWidget(createContent("height: *", "orange"));

        FitPanel panel = new FitPanel();
View Full Code Here

Examples of org.gwtoolbox.widget.client.panel.layout.VerticalLayoutData

        final DoubleHorizontalSplitPanel hsp = new DoubleHorizontalSplitPanel();
        hsp.setLeftWidget(addScroll(createContent(createVeryLongText(), "white")));
        hsp.setRightWidget(addScroll(createContent(createVeryLongText(), "white")));

        FixedVerticalPanel vp = new FixedVerticalPanel();
        vp.addWidget(createContent("Console", "green"), new VerticalLayoutData().setHeight("25px"));
        vp.addWidget(createContent(createVeryLongText(), "orange"), new VerticalLayoutData().setExpandToFit(true).setOverflow("auto"));

        final SimpleVerticalSplitPanel vsp = new SimpleVerticalSplitPanel();
        vsp.setTopWidget(hsp);
        vsp.setBottomWidget(vp);
        vsp.setSplitPosition("75%");
View Full Code Here

Examples of org.gwtoolbox.widget.client.panel.layout.VerticalLayoutData

            }
        });

        if (fixedSize) {
            final FixedVerticalPanel main = new FixedVerticalPanel();
            main.addWidget(tabBar, new VerticalLayoutData().setHeight("27px"));
            main.addWidget(deckPanel, new VerticalLayoutData().setHeight("*").setExpandToFit(true).setOverflow("hidden"));
            tabBarVisibilitySetter = new ValueSetter<Boolean>() {
                public void set(Boolean visible) {
                    setVisible(main.getWidgetContainer(tabBar), visible);
                }
            };
View Full Code Here

Examples of org.gwtoolbox.widget.client.panel.layout.VerticalLayoutData

        addRelativePositoning(container);
    }

    @Override
    public void add(Widget widget) {
        addWidget(widget, new VerticalLayoutData().setHeight("*").setOverflow("visible"));
    }
View Full Code Here

Examples of org.gwtoolbox.widget.client.panel.layout.VerticalLayoutData

    public void add(Widget widget) {
        addWidget(widget, new VerticalLayoutData().setHeight("*").setOverflow("visible"));
    }

    public void addWidget(Widget widget) {
        VerticalLayoutData data = new VerticalLayoutData();
        addWidget(widget, data);
    }
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.