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

Examples of org.eurekastreams.web.client.ui.common.form.FormBuilder.addFormElement()


                                    Method.INSERT);

                            form.turnOffChangeCheck();
                            form.setOnCancelHistoryToken(Session.getInstance().generateUrl(
                                    new CreateUrlRequest(Page.SETTINGS, "tab", "Plugins")));
                            form.addFormElement(new ValueOnlyFormElement("id", id));
                            HTML infoMessage = new HTML(
                                    "<span class='gallery-upload-note'><strong>Please Note:</strong><br />"
                                            + "Please be sure your XML file includes the required fields.<br />"
                                            + " You will not be able to upload the XML without the required"
                                            + " fields.</span>");
View Full Code Here


                            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.addFormElement(new BasicDropDownFormElement("Category", "category", categories,
                                    defaultCategory, "", true));

                            form.addFormDivider();

                            form.addFormElement(new BasicTextBoxFormElement("Plugin XML:", "url", defaultUrl,
                                    "Enter the link to the xml file", true));

                            form.addFormDivider();

                            galleryAddOrEditContainer.add(form);
View Full Code Here

                        + "on an interval of your choice.  You can also add a link to the full "
                        + "Terms of Service document.", true);

        tosElement.addStyleName(StaticResourceBundle.INSTANCE.coreCss().hideableTextarea());

        form.addFormElement(new PersonModelViewLookupFormElement("Eureka Administrators", "Add Administrator", "",
                "admins", systemSettingValues.getSystemAdministrators(), true));

        form.addFormDivider();

        Integer promptVal = systemSettingValues.getTosPromptInterval();
View Full Code Here

        {
            promptVal = 1;
        }

        promptInterval = new TermsOfServicePromptIntervalFormElement(promptVal, "tosPromptInterval");
        form.addFormElement(new UserAssociationFormElement(systemSettingValues));

        BasicCheckBoxFormElement sendEmails = new BasicCheckBoxFormElement("", "sendWelcomeEmails",
                "Send email invitations to new users as their accounts are created.", false,
                systemSettingValues.getSendWelcomeEmails());
View Full Code Here

        FlowPanel clearPanel = new FlowPanel();

        clearPanel.addStyleName(StaticResourceBundle.INSTANCE.coreCss().clear());

        sendEmails.add(membershipRefreshButton);
        form.addFormElement(sendEmails);

        form.addFormDivider();
        form.addWidget(new SendNotificationWidget());
        form.addFormDivider();
        form.addFormElement(hideableSiteLabel);
View Full Code Here

        form.addFormElement(sendEmails);

        form.addFormDivider();
        form.addWidget(new SendNotificationWidget());
        form.addFormDivider();
        form.addFormElement(hideableSiteLabel);
        form.addFormDivider();
        form.addFormElement(hideableContentWarning);
        form.addFormDivider();
        form.addFormElement(hideablePluginWarning);
        form.addFormDivider();
View Full Code Here

        form.addFormDivider();
        form.addWidget(new SendNotificationWidget());
        form.addFormDivider();
        form.addFormElement(hideableSiteLabel);
        form.addFormDivider();
        form.addFormElement(hideableContentWarning);
        form.addFormDivider();
        form.addFormElement(hideablePluginWarning);
        form.addFormDivider();
        form.addFormElement(tosElement);
        form.addFormElement(promptInterval);
View Full Code Here

        form.addFormDivider();
        form.addFormElement(hideableSiteLabel);
        form.addFormDivider();
        form.addFormElement(hideableContentWarning);
        form.addFormDivider();
        form.addFormElement(hideablePluginWarning);
        form.addFormDivider();
        form.addFormElement(tosElement);
        form.addFormElement(promptInterval);
        form.addFormDivider();
View Full Code Here

        form.addFormDivider();
        form.addFormElement(hideableContentWarning);
        form.addFormDivider();
        form.addFormElement(hideablePluginWarning);
        form.addFormDivider();
        form.addFormElement(tosElement);
        form.addFormElement(promptInterval);
        form.addFormDivider();

        // Help Page
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.