Closed GoogleCodeExporter closed 9 years ago
Title should be "Dialog demo" not "Dialog demon"
Original comment by nbpr...@gmail.com
on 11 Sep 2011 at 1:32
Original comment by hielke.hoeve
on 12 Sep 2011 at 8:30
[deleted comment]
Sorry for the long wait...
You can mimmick the effect by using this snippit from Form line 737:
// First, see if the processing was triggered by a Wicket
IFormSubmittingComponent
if (submitter == null)
{
submitter = findSubmittingButton();
}
// When processing was triggered by a Wicket IFormSubmittingComponent and that
// component indicates it wants to be called immediately
// (without processing), call IFormSubmittingComponent.onSubmit() right away.
if (submitter != null && !submitter.getDefaultFormProcessing())
{
submitter.onSubmit();
}
else
{
// this is the root form
Form<?> formToProcess = this;
// find out whether it was a nested form that was submitted
if (submitter != null)
{
formToProcess = submitter.getForm();
}
// process the form for this request
formToProcess.process(submitter);
}
Original comment by hielke.hoeve
on 26 Oct 2011 at 7:20
Original comment by hielke.hoeve
on 26 Oct 2011 at 7:20
any other questions about the examples should be asked in wiquery-plugins.
Original comment by hielke.hoeve
on 10 Nov 2011 at 8:18
Original issue reported on code.google.com by
nbpr...@gmail.com
on 11 Sep 2011 at 1:30