[
https://issues.apache.org/jira/browse/WICKET-2454?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12752242#action_12752242
]
Igor Vaynberg commented on WICKET-2454:
---------------------------------------
a patch would be welcome, as far as i know we are showing all available error
information
> IE8: be more verbose if ajax refresh fails
> ------------------------------------------
>
> Key: WICKET-2454
> URL: https://issues.apache.org/jira/browse/WICKET-2454
> Project: Wicket
> Issue Type: Improvement
> Components: wicket
> Affects Versions: 1.4.1
> Environment: Internet explorer, all versions
> Reporter: Ilja Pavkovic
> Original Estimate: 2h
> Remaining Estimate: 2h
>
> sometimes we write wrong html code, for example
> <link rel="xxx">
> instead of
> <link rel="xxx"/>
> if parts of the page are refreshed via Ajax on IE, the following code is
> called: wicket-ajax.js
> if (window.ActiveXObject) {
> xmldoc = new ActiveXObject("Microsoft.XMLDOM");
> xmldoc.loadXML(text);
> } else {
> if loadXML fails there is no direct feedback, you only get a cryptic error
> message:
> Wicket.Ajax.Call.failure: Error while parsing response: Object required.
> if would be great if you write some logs in case of load error:
> if(!xmldoc.loadXML(text)) {
> this.failure("error while parsing text: "+text);
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.