Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.1.5
-
None
-
Windows XP, IE, JBoss 4.0.5
Description
<pprPanelGroup> does not work inside <dataTable>. In render phase, the variable "book" becomes null.
<h:form id="pprDataTable">
<t:commandLink />
<t:dataTable id="books"
var="book"
value="#
"
rowCountVar="rowCount"
rowIndexVar="rowIndex">
<h:column>
<h:panelGroup rendered="#
{rowIndex==0}">
<s:pprPanelGroup id="ppr" partialTriggerPattern=".*foo">
<t:selectOneMenu id="foo" value="#
onchange="submit(this);"
valueChangeListener="#{book.titleChanged}">
<f:selectItem itemValue="Book1" itemLabel="Book1"/>
<f:selectItem itemValue="Book2" itemLabel="Book2"/>
<f:selectItem itemValue="Book3" itemLabel="Book3"/>
</t:selectOneMenu>
<h:outputText value="#{book.title}
"/>
</s:pprPanelGroup>
</h:panelGroup>
<h:panelGroup rendered="#
{rowIndex>0}">
<h:outputText value="#
"/>
</h:panelGroup>
</h:column>
</t:dataTable>
</h:form>