Package org.eurekastreams.web.client.ui.common.form.elements

Examples of org.eurekastreams.web.client.ui.common.form.elements.BasicDropDownFormElement


                            form.addWidget(infoMessage);
                            form.addFormDivider();

                            List<String> categories = new LinkedList<String>();
                            categories.add("Internet Services");
                            form.addFormElement(new BasicDropDownFormElement("Category", "category", categories,
                                    defaultCategory, "", true));

                            form.addFormDivider();

                            form.addFormElement(new BasicTextBoxFormElement("Plugin XML:", "url", defaultUrl,
View Full Code Here


        form.addWidget(new HTML("<em class='gallery-upload-note'><strong>Please Note:</strong><br />"
                + "When users add your tab from the gallery they will be making a copy of the tab. "
                + "Updates you make to the tab will not be reflected for users who have previously add it."));
        form.addFormDivider();

        form.addFormElement(new BasicDropDownFormElement("Tabs", "tab", startPageTabsDropDownValues, "-1",
                tabDropDownInstructions, method == Method.INSERT));
        form.addFormDivider();

        form
                .addFormElement(new BasicDropDownFormElement("Category", "category", categories, defaultCategory, "",
                        true));

        form.addFormDivider();

        form.addFormElement(new BasicTextBoxFormElement("Description:", "description", defaultDescription, "", true));
View Full Code Here

                + "target='_blank'>required fields</a>. "
                + "You will not be able to upload the XML without the required fields."));
        form.addFormDivider();

        form
                .addFormElement(new BasicDropDownFormElement("Category", "category", categories, defaultCategory, "",
                        true));

        form.addFormDivider();

        form.addFormElement(new BasicTextBoxFormElement("Theme XML:", "url", defaultUrl,
View Full Code Here

                + "Please be sure your XML file includes the required fields. You will not be able to upload the XML "
                + "without the required fields."));
        form.addFormDivider();

        form
                .addFormElement(new BasicDropDownFormElement("Category", "category", categories, defaultCategory, "",
                        true));

        form.addFormDivider();

        form.addFormElement(new BasicTextBoxFormElement("App XML:", "url", defaultUrl,
View Full Code Here

            valuesList.add(values[i]);
        }

        boolean required = setupRequired(inKey, requiredText);

        formBuilder.addFormElement(new BasicDropDownFormElement(labelVal, inKey, valuesList, currentValue,
                inInstructions, required));
        hideSpinny();
    }
View Full Code Here

        results = new Label();

        description = new Label(GROUP_DESC);
        description.addStyleName(StaticResourceBundle.INSTANCE.coreCss().formInstructions());

        tabDropDown = new BasicDropDownFormElement("Default Tab", "tab", galleryTabTemplateDropDownValues, "-1", "",
                false);

        themeDropDown = new BasicDropDownFormElement("Default Theme", "theme", themeDropDownValues, "-1", "", false);

        FlowPanel tabDropDownWrapper = new FlowPanel();
        tabDropDownWrapper.addStyleName(StaticResourceBundle.INSTANCE.coreCss().dropdownWrapper());
        tabDropDownWrapper.add(tabDropDown);
View Full Code Here

TOP

Related Classes of org.eurekastreams.web.client.ui.common.form.elements.BasicDropDownFormElement

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.