0

I am working on migrating a large GWT application from gwt-ext to native GWT v2.4. In gwt-ext there is a class called JavaScriptObjectHelper. Is there a corresponding class in the native gwt libraries?

Joe
  • 283
  • 4
  • 10

1 Answers1

0

Some methods from JavaScriptObjectHelper are available elsewhere: JavaScriptObject.createObject() and createArray(), JsArrayand friends, Element's methods (getProperty, getAttribute, etc.), and of course Boolean.valueOf() and similar methods on Integer, Float, Date, etc.

A few other methods have no equivalent though: apply, arrayConvert, convertMapToJavaScriptArray, etc.

Thomas Broyer
  • 64,353
  • 7
  • 91
  • 164