[jbossseam-issues] [JBoss JIRA] Closed: (JBSEAM-1271) setting onreadystatechange to null causing error in IE6

Shane Bryzak (JIRA) jira-events at lists.jboss.org
Mon Apr 30 20:10:33 EDT 2007


     [ http://jira.jboss.com/jira/browse/JBSEAM-1271?page=all ]

Shane Bryzak closed JBSEAM-1271.
--------------------------------

    Fix Version/s: 1.3.0.BETA1
                       (was: 1.2.1.GA)
       Resolution: Done

This has been applied, thanks for the patch.

> setting onreadystatechange to null causing error in IE6
> -------------------------------------------------------
>
>                 Key: JBSEAM-1271
>                 URL: http://jira.jboss.com/jira/browse/JBSEAM-1271
>             Project: JBoss Seam
>          Issue Type: Bug
>          Components: Remoting
>         Environment: IE6
>            Reporter: Keith Naas
>         Assigned To: Shane Bryzak
>             Fix For: 1.3.0.BETA1
>
>
> When testing remoting in IE6, we noticed a reoccurrence of the old IE remoting bug JBSEAM-267.
> For a good explanation of how to workaround this, see: http://www.quirksmode.org/blog/archives/2005/09/xmlhttp_notes_a_1.html 
> Here is the patched remote.js
> ### Eclipse Workspace Patch 1.0
> #P jboss-seam
> Index: src/remoting/org/jboss/seam/remoting/remote.js
> ===================================================================
> RCS file: /cvsroot/jboss/jboss-seam/src/remoting/org/jboss/seam/remoting/remote.js,v
> retrieving revision 1.2
> diff -u -r1.2 remote.js
> --- src/remoting/org/jboss/seam/remoting/remote.js	24 Apr 2007 23:52:34 -0000	1.2
> +++ src/remoting/org/jboss/seam/remoting/remote.js	30 Apr 2007 23:38:07 -0000
> @@ -604,7 +604,7 @@
>    if (req.readyState == 4)
>    {
>      Seam.Remoting.hideLoadingMessage();
> -    req.onreadystatechange = null;
> +    req.onreadystatechange = function() {};
>  
>      if (req.status == 200)
>      {

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list