Package com.gwtext.client.widgets.layout

Examples of com.gwtext.client.widgets.layout.FitLayout


    protected void onConfigure() {
        final Window window = new Window();
        window.setSize(550, 250);
        window.setTitle("Configure");
        window.setLayout(new FitLayout());
        window.setClosable(true);
        window.setPaddings(7);
        window.setCloseAction(Window.CLOSE);
        final TabPanel configPanel = getConfigurationPanel();
        window.add(configPanel);
View Full Code Here


        selectWindow.setTitle("Select class");
        selectWindow.setWidth(600);
        selectWindow.setHeight(480);
        selectWindow.setMinWidth(300);
        selectWindow.setMinHeight(350);
        selectWindow.setLayout(new FitLayout());
        selectWindow.setPaddings(5);
        selectWindow.setButtonAlign(Position.CENTER);

        selectWindow.setPlain(true);
View Full Code Here

            selectWindow.setTitle("Select parents");
            selectWindow.setWidth(600);
            selectWindow.setHeight(480);
            selectWindow.setMinWidth(300);
            selectWindow.setMinHeight(350);
            selectWindow.setLayout(new FitLayout());
            selectWindow.setPaddings(5);
            selectWindow.setButtonAlign(Position.CENTER);

            selectWindow.setCloseAction(Window.HIDE);
            selectWindow.setPlain(true);
View Full Code Here

            popupWindow.setMinWidth(400);
            popupWindow.setMinHeight(200);
            popupWindow.setSize(600,350);
           
            popupWindow.setModal(true);
            popupWindow.setLayout(new FitLayout());
            popupWindow.add(field);
            field.setTabIndex(0);
           
            toolbar = new Toolbar();
            toolbar.addText("<span style=\"color:#CC0000;font-weight:bold;\">This is a read-only view. Changes will not be saved!</span>");
View Full Code Here

        topLoginTable.getFlexCellFormatter().setAlignment(0, 0, HasAlignment.ALIGN_CENTER, HasAlignment.ALIGN_MIDDLE);
        Panel panel = new Panel();
        panel.setBorder(false);
        panel.setPaddings(15);
        panel.setCls("loginpanel");
        panel.setLayout(new FitLayout());

        win.setLayout(new FitLayout());

        panel.add(topLoginTable, new AnchorLayoutData("-100 30%"));
        win.setTitle("Sign in");
        win.setClosable(true);
        win.setClosable(true);
View Full Code Here

    public void setTabConfiguration(final TabConfiguration tabConfig) {
        this.tabConfiguration = tabConfig;
    }

    public void setup() {
        setLayout(new FitLayout());
        setHideBorders(true);

        // if configuration is null, initialize the default UI
        if (tabConfiguration == null) {
            tabConfiguration = getDefaultTabConfiguration();
View Full Code Here

            selectWindow.setTitle("Select values");
            selectWindow.setWidth(600);
            selectWindow.setHeight(480);
            selectWindow.setMinWidth(300);
            selectWindow.setMinHeight(350);
            selectWindow.setLayout(new FitLayout());
            selectWindow.setPaddings(5);
            selectWindow.setButtonAlign(Position.CENTER);

            selectWindow.setCloseAction(Window.HIDE);
            selectWindow.setPlain(true);
View Full Code Here

        linkPanel.add(createAdditionalHtml());

        wrappingPanel = new Panel();
        wrappingPanel.setAutoScroll(true);
        wrappingPanel.setPaddings(5);
        wrappingPanel.setLayout(new FitLayout());

        add(linkPanel, new ColumnLayoutData(.35));
        add(wrappingPanel, new ColumnLayoutData(.65));
    }
View Full Code Here

        final Window window = new Window();

        window.setTitle("BioPortal Search  for property " + UIUtil.getDisplayText(getProperty()));
        window.setWidth(800);
        window.setHeight(400);
        window.setLayout(new FitLayout());

        bpSearchComponent = new BioPortalSearchComponent(getProjectId(), !multiValue) {
            @Override
            protected AbstractAsyncHandler<EntityData> getImportBioPortalConceptHandler() {
                return new ImportBioPortalConceptHandler(this);
View Full Code Here

        panel.setWidth(548);
        panel.setHeight(465);

        Panel wrappingPanel = new Panel();
        wrappingPanel.setHeight(270);
        wrappingPanel.setLayout(new FitLayout());

        final FormPanel formPanel = new FormPanel();
        formPanel.setPaddings(7);

        final TextField txtLabel = new TextField("Label");
View Full Code Here

TOP

Related Classes of com.gwtext.client.widgets.layout.FitLayout

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.