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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Some methods from
JavaScriptObjectHelperare available elsewhere:JavaScriptObject.createObject()andcreateArray(),JsArrayand friends,Element‘s methods (getProperty,getAttribute, etc.), and of courseBoolean.valueOf()and similar methods onInteger,Float,Date, etc.A few other methods have no equivalent though:
apply,arrayConvert,convertMapToJavaScriptArray, etc.