Edward83
Edward83

Reputation: 6686

HTML5 website widgets on GWT?

Can i develop widgets on gwt for html5 web site? And if yes, what do you think about such compilation of technologies?

alt text

Upvotes: 1

Views: 684

Answers (2)

krishnakumarp
krishnakumarp

Reputation: 9295

GWT 2.2 adds support for canvas.

Release Notes

Demo

Source

Upvotes: 0

stan229
stan229

Reputation: 2607

Since GWT still compiles down to Javascript you can make HTML5 widgets by either using JSNI or DOM Manipulation setting Attributes for HTML5 Properties.

If you wanted to do vector drawing (canvas) you can use: http://code.google.com/p/google-web-toolkit-incubator/wiki/GWTCanvas

Upvotes: 1

Related Questions