venkat kavali created RF-12460:
----------------------------------

             Summary: RF-11138 Tree does not invoke selectionChangeListener in 
popupPanel with 4.2.0 final also
                 Key: RF-12460
                 URL: https://issues.jboss.org/browse/RF-12460
             Project: RichFaces
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: examples
    Affects Versions: 4.2.0.Final
            Reporter: venkat kavali


Rich Tree working fine below source code. But same code applied in Popup panel, 
unable to get selected Item. Popup div also within same form.

Working Fine below code
<rich:tree value="#{typeList.root}" var="node"  render="label2 label3"
   selection="#{typeList.selectedNodes}" id="treeMul" 
    ajaxSubmitSelection="true" selectionType="ajax">
   <rich:treeNode> 
   <h:outputText value="#{node}" />     
   </rich:treeNode>             
</rich:tree> 

Problem Here
<rich:popupPanel id="popup" modal="true" autosized="true"
resizeable="false" overlapEmbedObjects="true">
<f:facet name="header">
<h:outputText value="Tree View" />
</f:facet>
<f:facet name="controls">
<h:outputLink value="#"
onclick="#{rich:component('popup')}.hide(); return false;">X</h:outputLink>
</f:facet>
 <rich:tree value="#{typeList.root}" var="node"  render="label2 label3"
   selection="#{typeList.selectedNodes}" id="treeMul" 
    ajaxSubmitSelection="true" selectionType="ajax">
   <rich:treeNode> 
   <h:outputText value="#{node}" />     
   </rich:treeNode>             
</rich:tree>
<rich:popupPanel  


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
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