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