1

我正在尝试在我的数据表中使用 p:rowToggler 和 p:rowExpansion。它在 primefaces 3.2 上运行良好,最近我升级到 primefaces 3.5。从那时起它就不起作用了。以下是带有 roToggler 和 rowExpansion 的数据表

<p:datatable value="#{myBean.valueList}">
<p:column>
<p:rowToggler/>
</p:column>
<p:rowExpansion>
...
</p:rowExpansion>
</p:datatable>

任何帮助,将不胜感激

谢谢

普拉文

4

1 回答 1

0

请尝试如下,

<p:dataTable var="education" 
             value="#{backingBean.schoolList}" 
             reflow="true"
             paginator="true" 
             sortMode="multiple" 
             emptyMessage="No records found."
             rows="#{backingBean.rowsPerPage}">
                            
            <p:column headerText="Details" styleClass="Wid10">
                <p:rowToggler expandLabel="Show" collapseLabel="Hide" icon="ui-icon-close"/>
            </p:column>
            
            <p:column headerText="Center">
                <h:outputText value="#{education.centerName}"/>
            </p:column>
            
            <p:column headerText="Address">
                <h:outputText value="#{education.addr}" />
            </p:column>
                        
            <p:rowExpansion>
                <p:outputLabel value="Course: " styleClass="FontBold" />
                <BR />
                <h:outputText value="#{education.course}" />
                <Br />
                <p:outputLabel value="Details: " styleClass="FontBold" />
                <BR />
                    <h:outputText value="#{education.details}" />
            </p:rowExpansion>
        </p:dataTable>
于 2021-03-26T13:27:09.577 回答