Hmm if I dont get the question right feel free to give some more information.
In general you can add behavior to existing static HTML/CSS UI designs/mockups using GWT but you have to be aware that you probably slow down your workflow a bit compared to what you are used to as a Web/Ui Designer using JQuery. Thats because in GWT you program Java and you need either a browser plugin for live editing (which is a bit slower because the plugin needs to translate between Java <-> JavaScript) or you have to compile your GWT code into JavaScript before seeing changes in the browser. Using SuperDevMode this compilation can be quite fast but it will still be slower then just reloading the HTML in the browser like you would do it as web designer/UI designer. Beside that GWT can of course directly manipulate DOM elements and there is even a project called GWTQuery which mimics JQuery in the GWT land. But maybe you should look at AngularJS (as an alternative to JQuery) before considering GWT. AngularJS is really nice if you want to enhance a static HTML design/mockup with some interaction functionalities. Take a look at the AngularJS examples on their homepage and give this video a shot (from Google IO 2013): http://www.youtube.com/watch?v=HCR7i5F5L8c -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
