Examples of LayoutSpacer


Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

    }

    private ToolStrip createButtonBar() {
        buttonBar = new ToolStrip();
        buttonBar.setWidth100();
        buttonBar.addMember(new LayoutSpacer());

        this.saveButton = new EnhancedIButton(MSG.common_button_save());
        this.saveButton.addClickHandler(new ClickHandler() {
            public void onClick(ClickEvent clickEvent) {
                save();
View Full Code Here

Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

    private EnhancedToolStrip createButtonBar() {
        EnhancedToolStrip toolStrip = new EnhancedToolStrip();
        toolStrip.setWidth100();

        toolStrip.addMember(new LayoutSpacer());

        this.saveButton = new EnhancedIButton(MSG.common_button_save());
        this.saveButton.addClickHandler(new ClickHandler() {
            public void onClick(ClickEvent clickEvent) {
                save();
View Full Code Here

Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

                header.setWidth100();
                header.setAlign(com.smartgwt.client.types.Alignment.CENTER);
                hlayout.addMember(header);
            }
            detailsHolder.addMember(hlayout);
            LayoutSpacer verticalSpacer = new LayoutSpacer();
            verticalSpacer.setHeight(8);
            detailsHolder.addMember(verticalSpacer);
        }

        detailsHolder.addMember(detailsView);
        detailsHolder.animateShow(AnimationEffect.WIPE);
View Full Code Here

Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

        footer.addMember(ignoreButton);
        footer.addMember(unignoreButton);

        disableButtons(importButton, ignoreButton, unignoreButton);

        footer.addMember(new LayoutSpacer());

        // The remaining footer items (status filter, (de)select all buttons, and refresh button) will be right-aligned.

        DynamicForm form = new DynamicForm();
        final SelectItem statusSelectItem = new SelectItem("status", MSG.view_autoDiscoveryQ_showStatus());
View Full Code Here

Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

            this.messageLayout.setAutoHeight();
            addMember(this.messageLayout);
            this.availableFilterForm = getAvailableFilterForm();
            if (this.availableFilterForm != null) {
                addMember(this.availableFilterForm);
                LayoutSpacer spacer = new LayoutSpacer();
                spacer.setHeight(10);
                addMember(spacer);
            }

            SectionStack availableItemsStack = buildAvailableItemsStack();
            hlayout.addMember(availableItemsStack);
View Full Code Here

Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

            }
        });

        regularSnapshotsForm.setFields(items.toArray(new FormItem[items.size()]));

        LayoutSpacer spacer = new LayoutSpacer();
        spacer.setWidth100();

        ToolStrip toolStrip = buildToolStrip();
        setMembers(clusterForm, deploymentForm, credentialsForm, regularSnapshotsForm, spacer, toolStrip);
        clusterForm.validate();
        deploymentForm.validate();
View Full Code Here

Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

        }

        titleLayout.addMember(titleCanvas);

        if (titleComponent != null) {
            titleLayout.addMember(new LayoutSpacer());
            titleLayout.addMember(titleComponent);
        }
    }
View Full Code Here

Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

        for (Canvas extraWidgetCanvas : extraWidgetsInMainFooter) {
            footer.addMember(extraWidgetCanvas);
        }

        footer.addMember(new LayoutSpacer());

        widthButton = new EnhancedIButton(MSG.common_button_fixedWidth());
        widthButton.addClickHandler(new ClickHandler() {
            public void onClick(ClickEvent clickEvent) {
                carouselUsingFixedWidths = !carouselUsingFixedWidths;
View Full Code Here

Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

            });
    }

    private void fetchStorageNodeConfigurationComposite(final StorageNode node) {
        if (node.getResource() == null) { // no associated resource yet
            LayoutSpacer spacer = new LayoutSpacer();
            spacer.setHeight(15);
            HTMLFlow info = new HTMLFlow(MSG.view_adminTopology_storageNodes_detail_noConfiguration(node.getAddress()));
            SectionStackSection section = new SectionStackSection(
                MSG.view_adminTopology_storageNodes_detail_configuration());
            section.setItems(spacer, info);
            section.setExpanded(true);
View Full Code Here

Examples of com.smartgwt.client.widgets.layout.LayoutSpacer

        if (storageNode.getResource() == null) {
            HTMLFlow info = new HTMLFlow(MSG.view_adminTopology_storageNodes_detail_noLoadData());
            info.setExtraSpace(5);
            loadLayout = new EnhancedVLayout();
            loadLayout.setWidth100();
            LayoutSpacer spacer = new LayoutSpacer();
            spacer.setHeight(10);
            HTMLFlow loadLabel = new HTMLFlow(MSG.view_adminTopology_storageNodes_detail_status());
            loadLabel.addStyleName("formTitle");
            loadLabel.setHoverWidth(300);
            loadLayout.setMembers(spacer, loadLabel, info);
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.