[richfaces-issues] [JBoss JIRA] Commented: (RF-11266) showcase - Tree Adaptors - selection of nodes does not work and it is possible to expand only one node on IE9

Brian Leathem (JIRA) jira-events at lists.jboss.org
Thu Sep 1 23:46:29 EDT 2011


    [ https://issues.jboss.org/browse/RF-11266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12625920#comment-12625920 ] 

Brian Leathem commented on RF-11266:
------------------------------------

Nevermind the previous comment.  Turns out the same thing happens in Chrome.  However in Chrome, the value is re-instated by the _window.eval_ call at:
{code:title=jsf.js, line 246}
//
        /**
         * Evaluate JavaScript code in a global context.
         * @param src JavaScript code to evaluate
         * @ignore
         */
        var globalEval = function globalEval(src) {
            if (window.execScript) {
                window.execScript(src);
                return;
            }
            // We have to wrap the call in an anon function because of a firefox bug, where this is incorrectly set
            // We need to explicitly call window.eval because of a Chrome peculiarity
            var fn = function() {
                window.eval.call(window,src);
            };
            fn();
        };
{code}

In IE9, this line is never reached, because an excpetion is thrown during the _doUpdate_ call at jsf.js, line 2025.

> showcase - Tree Adaptors - selection of nodes does not work and it is possible to expand only one node on IE9
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: RF-11266
>                 URL: https://issues.jboss.org/browse/RF-11266
>             Project: RichFaces
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: showcase
>    Affects Versions: 4.1.0.Milestone1
>         Environment: richfaces-showcase-4.1.0.20110805-M1-jee6.war
> container - JBoss AS 6.0.0.Final
> browser - IE 9
>            Reporter: Juraj Huska
>              Labels: ie9
>             Fix For: 4.1.0.Milestone2
>
>
> When I try to select any node, it is not highlighted and it is possible to expand only one node. After expanding one node, clicking on other expand signs does not work.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the richfaces-issues mailing list