AjaxFallbackButton not getting form
-----------------------------------
Key: WICKET-1398
URL: https://issues.apache.org/jira/browse/WICKET-1398
Project: Wicket
Issue Type: Bug
Components: wicket
Affects Versions: 1.3.1
Reporter: Edward Mostrom
Priority: Minor
AjaxFallbackButton is passing mForm instead of getForm() when calling onSubmit
and onError. Can be fixed by changing to:
protected void onSubmit(AjaxRequestTarget target) {
AjaxFallbackButton.this.onSubmit(target,
AjaxFallbackButton.this.getForm());
}
protected void onError(AjaxRequestTarget target) {
AjaxFallbackButton.this.onError(target,
AjaxFallbackButton.this
.getForm());
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.