Examples of AboutModalWindow


Examples of org.rhq.coregui.client.components.AboutModalWindow

    private NavigationSection buildProductSection() {

        NavigationItem aboutItem = new NavigationItem(new ViewName("AboutBox", MSG.view_help_section_product_about(),
            IconEnum.HELP), new ViewFactory() {
                public Canvas createView() {
                    final AboutModalWindow aboutModalWindow = new AboutModalWindow(productInfo);
                    aboutModalWindow.show();
                    return aboutModalWindow;
                }
            });
        aboutItem.setRefreshRequired(true);
        return new NavigationSection(SECTION_PRODUCT_VIEW_ID, aboutItem);
View Full Code Here

Examples of org.rhq.coregui.client.components.AboutModalWindow

        this.messageCenter.showMessageCenterWindow();
    }

    // called via JSNI - RHQ on logo click
    public void showAboutBox() {
        new AboutModalWindow(productInfo).show();
    }
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.