Package org.gwt.mosaic.ui.client.infopanel

Examples of org.gwt.mosaic.ui.client.infopanel.InfoPanel


            int width = parent.getOffsetWidth();
            int height = parent.getOffsetHeight();

            if(width>100 & height>100) // workaround hidden panels
            {
                p = new InfoPanel();
                p.setStylePrimaryName("bpm-loading-overlay");
                p.setWidget(new Image("images/loading_lite.gif"));
                p.setPopupPosition(left+(width/2)-15, top+(height/2)-15);
                p.show();
            }
View Full Code Here

TOP

Related Classes of org.gwt.mosaic.ui.client.infopanel.InfoPanel

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.