Monday, June 22, 2015

Re: Cell Widgets in GWT 3.0

Cell widgets are just normal widgets (cell widgets just use setInnerHTML instead of DOM operations) which use com.google.gwt.dom.client.Element under the hood. This class in turn is a JavaScriptObject which uses JSNI which is not supported in GWT 3.0. 

So once the widget library works with GWT 3.0 then Cell widgets should work as well.

To make that happen one need to figure out a way to update com.google.gwt.dom.client.Element and its dependencies (DOM / Document class and such) to a JsInterop based implementation without breaking APIs so you have a drop-in replacement.

-- J.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment