Hello,

I'm a GWT newbie.

I've created a FlexTable in a FormPanel, and added few text box to the
table.
...
    final FormPanel form = new FormPanel();
    form.setMethod(FormPanel.METHOD_POST);
    FlexTable table = new FlexTable();
    form.setWidget(table);
...
    TextBox box = new TextBox();
    box.setName("myName");
    table.setWidget(0, 0, box);
...

Now I want to call a service with the form data when the user hits the
submit button.
How can I retrieve the form data?

Cheers,
Edo.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to