[richfaces-issues] [JBoss JIRA] Created: (RF-8575) tree: reRender failed used with ajaxKeys and defined with just nested components Id's

Ilya Shaikovsky (JIRA) jira-events at lists.jboss.org
Thu Apr 1 13:22:37 EDT 2010


tree:  reRender failed used with ajaxKeys and defined with just nested components Id's
--------------------------------------------------------------------------------------

                 Key: RF-8575
                 URL: https://jira.jboss.org/jira/browse/RF-8575
             Project: RichFaces
          Issue Type: Bug
      Security Level: Public (Everyone can see)
    Affects Versions: 3.3.3.CR1
            Reporter: Ilya Shaikovsky
            Assignee: Nick Belaevski


<ui:composition xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:a4j="http://richfaces.org/a4j"
      xmlns:rich="http://richfaces.org/rich">

    <style>
        .col1, .col2 {
            width:50%;
            vertical-align:top;
        }
        .rich-table-cell, .rich-table{
            border:none;
        }
        .indicatorPicture {
            width: 80px;
        }
    </style>

    <rich:dragIndicator id="indicator1" >
        <f:facet name="single">
            <h:graphicImage  styleClass="indicatorPicture" value="/richfaces/jQuery/images/{draggedImage}" />
        </f:facet>
    </rich:dragIndicator>
    <rich:dragIndicator id="indicator2" />
    <h:form>    
        <h:panelGrid columns="2" width="100%" columnClasses="col1,col2">
         
            <rich:tree ajaxKeys="#{simpleTreeDndBean.ajaxKeys}" style="width:300px" nodeSelectListener="#{simpleTreeDndBean.processSelection}" preserveModel="none"
                ajaxSubmitSelection="true"  switchType="client" dragIndicator="indicator2"
                value="#{simpleTreeDndBean.treeNode}" var="item" id="tree" treeNodeVar="treeNode"
                dropListener="#{simpleTreeDndBean.dropListener}" nodeFace="#{treeNode.parent.parent == null ? 'node' : 'leaf'}" ajaxNodeSelectionEncodeBehavior="none">
                <rich:treeNode reRender="cm"  type="node" acceptedTypes="pic" icon="#{treeNode.icon}" iconLeaf="#{treeNode.leafIcon}"> 
                    <h:outputText value="#{item}"/>
                    <a4j:outputPanel id="cm">
                    <rich:contextMenu event="oncontextmenu" rendered="#{treeNode.selected}">
                        <rich:menuItem value="123"/>
                    </rich:contextMenu>
                    </a4j:outputPanel>
                </rich:treeNode>
                <rich:treeNode type="leaf" dragType="pic"> 
                    <rich:dndParam name="label" type="drag">#{item}</rich:dndParam>

                    <h:outputText value="#{item}"/>
                </rich:treeNode>
            </rich:tree>
            <rich:panel id="selectedNode">
                <rich:dataGrid id="selectedNodeGrid" style="display: #{!empty simpleTreeDndBean.selectedNodeChildren ? '' : 'none'}" value="#{simpleTreeDndBean.selectedNodeChildren}" var="item" columns="3" border="0">
                    <rich:dragSupport dragIndicator="indicator1" dragType="pic" dragValue="#{item}" reRender="selectedNodeGrid">
                        <rich:dndParam name="draggedImage" value="#{item.data}"/>
                    </rich:dragSupport>
                    <h:graphicImage value="/richfaces/jQuery/images/#{item.data}" />
                </rich:dataGrid>
            </rich:panel>
        </h:panelGrid>

    </h:form>
<a4j:log popup="false"></a4j:log>
</ui:composition>

All the node updated instead if ajaxKey present (does it should? Seems no) and the reRender of nested component(cm) shows error in log like
warn[20:07:02,571]: Node for replace by response with id j_id522:tree:cm not found in document

-- 
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 richfaces-issues mailing list