I'm stumped on how dumb I can make a particular view. Maybe this is another thread, but I have a view with two FormPanels, each FormPanel holding a FileUpload. In my onSubmitCompleteHandlers, I'd like the view to respond, in once case by calling an RPC function. How do I get all this into my presenter/Activity? Can I still use UiBinder?
On Jul 13, 5:44 am, Thomas Broyer <[email protected]> wrote: > One of the goal of MVP is to make your presentation logic quickly & easily > testable (in GWT, that means using "pure JUnit" rather than the sluggish > GWTTestCase). As a result, you'd like to make you view as "dumb" as possible > (without necessarily pushing everything to presenter though, as it'd lose > readability and thus maintainability). So, you'd better put your RPC call in > your presenter (activity). -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
