Package org.jboss.ballroom.client.layout

Examples of org.jboss.ballroom.client.layout.LHSNavTree


        accessLeaf.addItem(authItem);
        /*LHSNavTreeItem auditLogItem = new LHSNavTreeItem(Console.CONSTANTS.administration_audit_log(),
                NameTokens.AuditLogPresenter);
        accessLeaf.addItem(auditLogItem);*/

        navigation = new LHSNavTree("administration");
        navigation.getElement().setAttribute("aria-label", Console.CONSTANTS.administration_label());
        navigation.addItem(accessLeaf);
        navigation.expandTopLevel();

        stack = new VerticalPanel();
View Full Code Here


        accessLeaf.addItem(authItem);
        LHSNavTreeItem auditLogItem = new LHSNavTreeItem(Console.CONSTANTS.administration_audit_log(),
                NameTokens.AuditLogPresenter);
        accessLeaf.addItem(auditLogItem);

        navigation = new LHSNavTree("administration");
        navigation.getElement().setAttribute("aria-label", Console.CONSTANTS.administration_label());
        navigation.addItem(accessLeaf);
        navigation.expandTopLevel();

        stack = new VerticalPanel();
View Full Code Here

        stack.setStyleName("fill-layout-width");


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

        LHSNavTree domainNavigation = new LHSNavTree("domain");
        domainNavigation.getElement().setAttribute("aria-label", "Domain Tasks");

        LHSTreeSection domainLeaf = new LHSTreeSection("Domain", true);
        domainLeaf.addItem(new LHSNavTreeItem("Overview", NameTokens.Topology));
        domainLeaf.addItem(new LHSNavTreeItem("Manage Deployments", NameTokens.DeploymentsPresenter));

        domainNavigation.addItem(domainLeaf);
        domainNavigation.expandTopLevel();

        stack.add(domainNavigation);
        domainNavigation.getElement().getParentElement().setAttribute("style", "border-bottom: 1px solid #BEBEBE;");

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

        serverPicker = new ServerPicker();
        stack.add(serverPicker.asWidget());

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

        navigation = new LHSNavTree("domain-runtime");
        navigation.getElement().setAttribute("aria-label", "Runtime Tasks");

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

        metricLeaf = new LHSTreeSection("Server Status");
View Full Code Here

    public CommonConfigSection() {
        super();

        panel = new DisclosureStackPanel(Console.CONSTANTS.common_label_generalConfig()).asWidget();
        commonTree = new LHSNavTree("profiles");
        panel.setContent(commonTree);

        //LHSNavTreeItem paths = new LHSNavTreeItem(Console.CONSTANTS.common_label_paths(), "domain/paths");
        LHSNavTreeItem interfaces = new LHSNavTreeItem(Console.CONSTANTS.common_label_interfaces(), NameTokens.InterfacePresenter);
        LHSNavTreeItem sockets = new LHSNavTreeItem(Console.CONSTANTS.common_label_socketBindingGroups(), "domain/socket-bindings");
View Full Code Here

        // -------- groups


        DisclosurePanel groupsPanel = new DisclosureStackPanel("Server Groups").asWidget();
        LHSNavTree groupsTree = new LHSNavTree("profiles");
        groupsPanel.setContent(groupsTree);

        groupsTree.addItem(new LHSNavTreeItem("Group Configurations", NameTokens.ServerGroupPresenter));
        stack.add(groupsPanel);

        // --------

        CommonConfigSection commonSection = new CommonConfigSection();
View Full Code Here

    public SubsystemSection()  {

        panel = new DisclosureStackPanel(Console.CONSTANTS.common_label_subsystems(), true).asWidget();

        subsysTree = new LHSNavTree("profiles");

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

View Full Code Here

        stack.setStyleName("fill-layout-width");


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

        LHSNavTree domainNavigation = new LHSNavTree("domain");
        domainNavigation.getElement().setAttribute("aria-label", "Domain Tasks");

        LHSTreeSection domainLeaf = new LHSTreeSection("Domain", true);
        domainLeaf.addItem(new LHSNavTreeItem("Overview", NameTokens.Topology));
        domainLeaf.addItem(new LHSNavTreeItem("Manage Deployments", NameTokens.DeploymentsPresenter));

        domainNavigation.addItem(domainLeaf);
        domainNavigation.expandTopLevel();

        stack.add(domainNavigation);
        domainNavigation.getElement().getParentElement().setAttribute("style", "border-bottom: 1px solid #BEBEBE;");

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

        serverPicker = new ServerPicker();
        stack.add(serverPicker.asWidget());

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

        navigation = new LHSNavTree("domain-runtime");
        navigation.getElement().setAttribute("aria-label", "Runtime Tasks");

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

        metricLeaf = new LHSTreeSection("Server Status");
View Full Code Here

        stack.setStyleName("fill-layout-width");

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


        navigation = new LHSNavTree("profiles");
        navigation.getElement().setAttribute("aria-label", "Profile Tasks");
        //navigation.getElement().setAttribute("aria-controls", "rhs-content-area");

        subsystemLeaf = new LHSTreeSection(Console.CONSTANTS.common_label_subsystems(), true);
        navigation.addItem(subsystemLeaf);
View Full Code Here

        stack.setStyleName("fill-layout-width");

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


        navigation = new LHSNavTree("standalone-runtime");
        navigation.getElement().setAttribute("aria-label", "Runtime Tasks");

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

        TreeItem serverLeaf = new LHSTreeSection("Server", true);
View Full Code Here

        // --------

        hostSelector = new HostSelector();
        stack.add(hostSelector.asWidget());

        navigation = new LHSNavTree("hosts");
        navigation.getElement().setAttribute("aria-label", "Profile Tasks");


        LHSTreeSection serverLeaf = new LHSTreeSection("Server");
        navigation.addItem(serverLeaf);
View Full Code Here

TOP

Related Classes of org.jboss.ballroom.client.layout.LHSNavTree

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.