I'm using GWT 2.4. I have a reference to a FormPanel, which contains a Button, with id="save." How do I get a reference to the Button widget given the form panel instance?

Note, that Button is not a direct descendant of formPanel, so "formPanel.getWidget()" will not automatically return a reference to the Button.

Thanks, -

link|improve this question

59% accept rate
Can you post code or sample code of what you're meaning? – Chris Nov 21 '11 at 21:27
feedback

2 Answers

Here's how I would do a FormPanel (programmatically...same principles apply to UiBinder methods):

final FormPanel form = new FormPanel();
form.setEncoding(FormPanel.ENCODING_MULTIPART);
form.setMethod(FormPanel.METHOD_POST);

VerticalPanel fieldContainer = new VerticalPanel();
final TextBox nameField = new TextBox();
nameField.setName("name");
Button submitButton = new Button("Submit", new ClickHandler() {
    @Override
    public void onClick(ClickEvent event) {
        form.submit();
    }
});

fieldContainer.add(nameField);
fieldContainer.add(submitButton);
form.setWidget(fieldContainer);
form.addSubmitHandler(new SubmitHandler() {
    @Override
    public void onSubmit(SubmitEvent event) {
        if (!doFormValidation()) {
            // the form isn't ready...display some error?
            event.cancel();
        }
    }
});

someContainer.add(form);

The doFormValidation() method can be pure Java or some native JS method that runs a JQuery validation, whatever you want or need. The reason you need to do form validation this way is you can't query the SubmitEvent for any of the form elements.

Hope that helps.

link|improve this answer
Chris, where in your code do you get a reference to a Button widget given the Button's id and the form panel instance? – Dave Nov 22 '11 at 13:14
doFormValidation() would check the form elements out via their UiField name in the case of UiBinder, or their variable name (submitButton) in this example. You would need to make a member field for each form element so that another function could access them. To be clear, you can't use the id of anything in pure GWT. You could, using JQuery or some other JS library, find the form elements by id or name and validate them in "Javascript Land" that way. But again, GWT doesn't work that way. GWT is designed to use variables (or member fields) to access widgets. – Chris Cashwell Nov 22 '11 at 14:56
feedback

You can use

formPanel.getWidget(),

if you're using com.google.gwt.user.client.ui.FormPanel. It will give you the reference to the widget you've added in the FormPanel.

link|improve this answer
I'll edit my queston, but the Button with id="save" is not a direct descendant of Formpanel, so getWidget does not return a reference to it. Given this, how do I get a reference to the Button widget given only that I know its id and it is a descendant (at some level) of FormPanel? – Dave Nov 22 '11 at 13:12
This answer is actually incorrect. The getWidget() method is inherited from SimplePanel, which FormPanel extends. Calling getWidget() would return the one and only widget in the form (the "container" for the form fields). In the case of my example, it would return fieldContainer. – Chris Cashwell Nov 22 '11 at 14:50
Hey Chris, SimplePanel allows only one widget to be added into it & so does FormPanel according to google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/…. I've tried running your sample code before posting the answer but I can't get to know that which FormPanel are you using as it gives me java.lang.IllegalStateException: SimplePanel can only contain one child widget. Have you run your code before posting it? Or Can you clarify which FormPanel are you using? – RAS Nov 24 '11 at 5:36
@RAS You may have missed the edit on November 22. Please try running it again. – Chris Cashwell Nov 28 '11 at 20:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.