ialexei / gwt-charts

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

Several JSNI bugs in CategoryFilterOptions class in 0.9.7 release #20

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
There are several methods with identical JSNI bugs in 
com.googlecode.gwt.charts.client.controls.filter.CategoryFilterOptions. It is 
wrong parameter name passed to the JS native code. Here are they:

    public final native void setValues(JsArray<JavaScriptObject> selectedValues) /*-{
        this.values = values;
    }-*/;

    public final native void setValues(JsArrayBoolean selectedValues) /*-{
        this.values = values;
    }-*/;

    public final native void setValues(JsArrayString selectedValues) /*-{
        this.values = values;
    }-*/;

~Dimitar

Original issue reported on code.google.com by dimiter....@gmail.com on 15 Nov 2012 at 7:16

GoogleCodeExporter commented 8 years ago

Original comment by rglafo...@gmail.com on 15 Nov 2012 at 2:20

GoogleCodeExporter commented 8 years ago

Original comment by rglafo...@gmail.com on 18 Nov 2012 at 12:10

GoogleCodeExporter commented 8 years ago

Original comment by rglafo...@gmail.com on 7 Dec 2012 at 12:06