Package com.gwtext.client.core

Examples of com.gwtext.client.core.DomConfig


    }-*/;

    public WidgetComponent(Widget widget) {
        ExtElement hiddenDiv = Ext.get(hiddenDivID);
        if (hiddenDiv == null) {
            DomConfig domConfig = new DomConfig("div", hiddenDivID, null);
            domConfig.setStyle("display:none;");
            DomHelper.append(RootPanel.getBodyElement(), domConfig);
        }
        setWidget(widget);
        setId(DOMUtil.getID(widget));
    }
View Full Code Here

TOP

Related Classes of com.gwtext.client.core.DomConfig

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.