http://www.gwtproject.org/articles/mvp-architecture.html

Check out the section that says "Binding Presenters and Views".


On Mon, Jan 12, 2015 at 3:42 PM, Ajay Sharma <[email protected]>
wrote:

> UsersView usersView=new UsersView();
>
> public HomeView() {
>
>     tabPanel=new TabPanel();
>     tabPanel.setSize("500px", "400px");
>     initWidget(tabPanel);
>
>     tabPanel.add(usersView.getUsersView(), "Home");
>     tabPanel.add(new Button("Add"),"User");
>     tabPanel.add(usersView.getUsersView(), "Reciept Type");
>     tabPanel.add(usersView.getUsersView(), "Payment Type");
>     tabPanel.add(usersView.getUsersView(), "Reciept");
>     tabPanel.add(usersView.getUsersView(), "Payment");
>
> }
>
> on *usersView.getUsersView()* method show user view like *TextBox*,
> *Button*.
>
> *The thing is when user click on save Button of user view , values should
> be captured like text box values and everything whatever defined in
> UsersPresenter which wraps data of UsersView ?*
>
> Please tell if anyone know about this, *Thank you in advance* :)
>
> --
> 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.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.

Reply via email to