[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-3444) s:defaultAction not work in firefox, and patch

liu lei (JIRA) jira-events at lists.jboss.org
Mon Sep 22 09:52:20 EDT 2008


s:defaultAction not work in firefox, and patch
----------------------------------------------

                 Key: JBSEAM-3444
                 URL: https://jira.jboss.org/jira/browse/JBSEAM-3444
             Project: Seam
          Issue Type: Bug
          Components: JSF Controls
    Affects Versions: 2.0.2.SP1
            Reporter: liu lei


s:defaultAction not work in firefox.

the problem is that firefox donnot have the "click()" event, but have the "onclick()" event.

So i change the "click()" to "onclick()", which is supported both in ie and firefox.

String functionBody = 
            "{var keycode;" + 
            "if (window.event) keycode = window.event.keyCode;" +
            "else if (event) keycode = event.which;" +
            "else return true;" + 
            "if (keycode == 13) " +
          // "{ document.getElementById('" + actionComponentId + "').click();return false; } " +  //wrong!!!!!!!!!
            "{ document.getElementById('" + actionComponentId + "').click();return false; } " +   //right!!!!!!!!!!!!!
            "else return true; }";



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

        



More information about the seam-issues mailing list