javierdotnet / gwt-ext

Automatically exported from code.google.com/p/gwt-ext
0 stars 3 forks source link

GridPanel does not have a static method to get an instance of itself #402

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Need to get an instance of the GridPanel based on a JavaScriptObject.  
There is a constructor for this but not a static method that can return it.  
This will facilitate the integration from JSNI code.

Original issue reported on code.google.com by mlim1...@gmail.com on 4 Sep 2008 at 6:05

GoogleCodeExporter commented 9 years ago
Created the following static method in GridPanel:

    public static GridPanel instance(JavaScriptObject jsObj) {
        return new GridPanel(jsObj);
    }

Original comment by mlim1...@gmail.com on 4 Sep 2008 at 6:07