Package org.jboss.ballroom.client.widgets

Examples of org.jboss.ballroom.client.widgets.ContentHeaderLabel


        layout.setStyleName("fill-layout"); // FF hack

        VerticalPanel panel = new VerticalPanel();
        panel.setStyleName("fill-layout-width");

        panel.add(new ContentHeaderLabel(entitiesName));
        if(description!=null)
            panel.add(new ContentDescription(description));

        final SingleSelectionModel<T> selectionModel = new SingleSelectionModel<T>();
        table.setSelectionModel(selectionModel);
View Full Code Here


    @Override
    public Widget createWidget() {
        VerticalPanel layout = new VerticalPanel();
        layout.setStyleName("rhs-content-panel");
        layout.add(new ContentHeaderLabel("Authorisation Required"));
        layout.add(new ContentDescription("You don't have the permissions to access this resource!"));
        return layout;
    }
View Full Code Here

        });

        // setup layout
        VerticalPanel main = new VerticalPanel();
        main.setStyleName("rhs-content-panel");
        main.add(new ContentHeaderLabel(Console.CONSTANTS.administration_audit_log()));
        main.add(new ContentDescription(Console.CONSTANTS.administration_audit_log_desc()));
        main.add(table);
        main.add(pager);
        main.add(forms);
View Full Code Here

        initRoles(Collections.EMPTY_SET, Collections.EMPTY_SET);

        VerticalPanel panel = new VerticalPanel();
        panel.setStyleName("window-content");
        panel.add(new RolesHelpPanel().asWidget());
        panel.add(new ContentHeaderLabel("Select Role"));
        panel.add(new ContentDescription("Select the role you want to act on their behalf."));

        Form<Object> form = new Form<Object>(Object.class);
        form.setFields(role);
        panel.add(form.asWidget());
View Full Code Here

        ScrollPanel scroll = new ScrollPanel(content);
        layout.add(scroll);
        layout.setWidgetTopHeight(scroll, 0, Style.Unit.PX, 100, Style.Unit.PCT);

        // header and desc
        content.add(new ContentHeaderLabel(Console.CONSTANTS.administration_scoped_roles()));
        content.add(new ContentDescription(Console.CONSTANTS.administration_scoped_roles_desc()));

        // toolstrip
        ToolStrip tools = new ToolStrip();
        tools.addToolButtonRight(new ToolButton(Console.CONSTANTS.common_label_add(), new ClickHandler() {
View Full Code Here

            description = Console.CONSTANTS.administration_group_assignment();
        } else {
            header = Console.CONSTANTS.common_label_users();
            description = Console.CONSTANTS.administration_user_assignment();
        }
        content.add(new ContentHeaderLabel(header));
        content.add(new ContentDescription(description));

        // toolstrip
        ToolStrip tools = new ToolStrip();
        tools.addToolButtonRight(new ToolButton(Console.CONSTANTS.common_label_add(), new ClickHandler() {
View Full Code Here

        initRoles(Collections.EMPTY_SET, Collections.EMPTY_SET);

        VerticalPanel panel = new VerticalPanel();
        panel.setStyleName("window-content");
        panel.add(new RolesHelpPanel().asWidget());
        panel.add(new ContentHeaderLabel("Select Role"));
        panel.add(new ContentDescription("Select the role you want to act on their behalf."));

        Form<Object> form = new Form<Object>(Object.class);
        form.setFields(role);
        panel.add(form.asWidget());
View Full Code Here

        // ------------------------------------------



        headline = new ContentHeaderLabel();

        MultipleToOneLayout layout = new MultipleToOneLayout()
                .setPlain(true)
                .setHeadlineWidget(headline)
                .setDescription(Console.CONSTANTS.common_socket_bindings_desc())
View Full Code Here

                        "</table>\n");

        panel.add(help.asWidget());


        panel.add(new ContentHeaderLabel("Select Role"));
        panel.add(new ContentDescription("Select the role you want to act on their behalf."));

        Form<Object> form = new Form<Object>(Object.class);
        role = new ListBoxItem("role", "Role");
View Full Code Here

        layout.add(scroll);

        layout.setWidgetTopHeight(titleBar, 0, Style.Unit.PX, 40, Style.Unit.PX);
        layout.setWidgetTopHeight(scroll, 40, Style.Unit.PX, 100, Style.Unit.PCT);

        panel.add(new ContentHeaderLabel("Transaction Manager"));
        panel.add(new ContentDescription(Console.CONSTANTS.subys_tx_desc()));

        // -----

        NumberBoxItem defaultTimeout = new NumberBoxItem("defaultTimeout", "Default Timeout");
View Full Code Here

TOP

Related Classes of org.jboss.ballroom.client.widgets.ContentHeaderLabel

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.