441442443444445446447448449
/** * Submits the form. */ public void submit() { if (fireEvent(Events.BeforeSubmit, new FormEvent(this))) { impl.submit(form.dom, iframe); } }
553554555556557558559
return false; } } private boolean onFormSubmitImpl() { return fireEvent(Events.BeforeSubmit, new FormEvent(this)); }
567568569570571572573574575
} private void onFrameLoadImpl() { DeferredCommand.addCommand(new Command() { public void execute() { fireEvent(Events.Submit, new FormEvent(FormPanel.this, impl.getContents(iframe))); } }); }