[
https://issues.jboss.org/browse/RF-12460?page=com.atlassian.jira.plugin.s...
]
Brian Leathem updated RF-12460:
-------------------------------
Labels: waiting_on_user (was: )
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
Labels: waiting_on_user
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
{code}
<rich:tree value="#{typeList.root}" var="node"
render="label2 label3" id="treeMul"
selection="#{typeList.selectedNodes}"
ajaxSubmitSelection="true" selectionType="ajax">
<rich:treeNode>
<h:outputText value="#{node}" />
</rich:treeNode>
</rich:tree>
{code}
Please provide solution ASAP. This is showstopper for me.
Problem Here
{code}
<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" id="treeMul"
selection="#{typeList.selectedNodes}"
ajaxSubmitSelection="true" selectionType="ajax">
<rich:treeNode>
<h:outputText value="#{node}" />
</rich:treeNode>
</rich:tree>
<rich:popupPanel
{code}
--
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