views:

69

answers:

2
+1  Q: 

GWT MVC + UIBinder

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
+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