What's the easiest and simplest way to implement an MVC-style pattern using UIBinder for the UIs?
+1
A:
With GWT, UiBinder is entirely within the "View". The XML and Java file together are a view. So UiBinder doesn't really ever deal with the Model and Controller, it's just the View.
Does this clear things up?
Brian Melancon
2010-07-14 18:42:40
+1
A:
Check out this blog post. It talks about using MVP and UIBinder together, and includes a sample app. I think you'll find most people in the GWT arena talking about Model-View-Presenter (MVP) rather than MVC.
Peter Recore
2010-07-14 19:51:06