Javascript ISSUE in IE with nested Forms & Multipart
----------------------------------------------------
Key: WICKET-2915
URL: https://issues.apache.org/jira/browse/WICKET-2915
Project: Wicket
Issue Type: Bug
Components: wicket
Affects Versions: 1.4.6
Reporter: Fridolin Jackstadt
Google recommends to check for undefined in the following way to avoid the
problem (http://code.google.com/p/doctype/wiki/ArticleUndefined)
this code solves the issue:
protected void registerJavascriptNamespaces(IHeaderResponse response) {
response.renderJavascript("if (typeof Wicket=='undefined') { Wicket={};
} if (typeof Wicket.Forms=='undefined') { Wicket.Forms={}; }",
Form.class.getName());
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.