why would we default to legacy impl on ie7 by default if we can use the native xmlhttprequest? instead we need to do an additional check for the domparser and use it only if present.

-Igor


On 7/8/06, Matej Knopp <[EMAIL PROTECTED]> wrote:
I have changed the order both in 1.2 and 2.0, but I don't have IE7 to be
able to test it. Anyone?

-Matej

SourceForge.net wrote:
> Bugs item #1519131, was opened at 2006-07-08 11:38
> Message generated for change (Tracker Item Submitted) made by Item Submitter
> You can respond by visiting:
> https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1519131&group_id=119783
>
> Please note that this message will contain a full copy of the comment thread,
> including the initial issue submission, for this request,
> not just the latest update.
> Category: core
> Group: 1.2
> Status: Open
> Resolution: None
> Priority: 5
> Submitted By: Yoav Landman (ylandman)
> Assigned to: Nobody/Anonymous (nobody)
> Summary: wicketAjaxOnStateChange broken under IE7
>
> Initial Comment:
> IE7 supports the native XMLHttpRequest object (see:
> http://blogs.msdn.com/ie/archive/2006/01/23/516393.aspx ).
> This causes "if (window.XMLHttpRequest)" to be
> evaluated as true on IE7, and then raises an undefined
> object exception for "DOMParser".
> I managed to work around this by reversing the order of
> evaluation:
>
> if (window.ActiveXObject) {
>    xmldoc = transport.responseXML;
> }
> else
> if (window.XMLHttpRequest) {
>    var parser = new DOMParser();
>    xmldoc = parser.parseFromString(responseAsText,
> "text/xml");
> }
>
> which is using the legacy ActiveX implementation of
> XMLHttpRequest on IE7.
>
>
> ----------------------------------------------------------------------
>
> You can respond by visiting:
> https://sourceforge.net/tracker/?func=detail&atid=684975&aid=1519131&group_id=119783
>
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Wicket-develop mailing list
> Wicket-develop@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-develop
>


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-develop mailing list
Wicket-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-develop

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-develop mailing list
Wicket-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-develop

Reply via email to