Friday, February 5, 2010

Declarative UI programming with GWT

If you have tried programming something on the GWT - 'platform' you should take at declarative UI programming at the guide at DevGuideUiBinder.html .oHowever, you should NOT add the panels with Document.get().appendChild( new MyBrandNewUIWidget().getElement()) as NONE of your events will ever trigger. You should however add your new widgets the old fashioned way with RootPanel.get().add( new MyBrandNewUIWidget());

Happy programming!

(Maybe I should put out an example of how great the new GWT 2.0 is, it's a lot of fun!)