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

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

I isolated the point at which we are unable to retrieve the javascript object 
from the DOM node.  It occurs when the _component_ is detached from the DOM, 
and subsequently re-attached.
{code:title=richfaces.js, line 89}
    //dom cleaner
    richfaces.cleanComponent = function (source) {
        var component = richfaces.$(source);
        if (component) {
            //TODO fire destroy event
            component.destroy();
            component.detach(source);
        }
        var attachedComponents = richfaces.findNonVisualComponents(source);
        if (attachedComponents) {
            for (var i in attachedComponents) {
                if (attachedComponents[i]) {
                    attachedComponents[i].destroy();
                }
            }
        }
    };
{code}
jQuery data is supposed to persist detaching, do further investigation is 
required as to why this is happening.

> 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

        
_______________________________________________
richfaces-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to