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

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


     [ https://jira.jboss.org/jira/browse/JBSEAM-3444?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

liu lei updated JBSEAM-3444:
----------------------------

    Attachment: DefaultActionRendererBase.java


> 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
>         Attachments: DefaultActionRendererBase.java
>
>
> 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 + "').onclick();return false; } " +   //right!!!!!!!!!!!!!
>             "else return true; }";
> I have tested in ie7 and firefox 3

-- 
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