3

我有一个 tabView,其中每个选项卡都包含一个数据表。我已经这样设置了

<p:tabView id="tabView" styleClass="manage-tab-view" prependId="false" 
        activeIndex="#{managementTabBean.activeIndex}" dynamic="true" cache="false">
<p:tab id="users" title="#{msg['TeamManagement.Tabs.Users']}" >
            <ui:include src="tab1.xhtml" />
        </p:tab>
<p:tab id="athletes" title="#{msg['TeamManagement.Tabs.Athletes']}">
            <ui:include src="tab2.xhtml" />
</p:tab>
</p:tabView>

在每个选项卡中,我试图显示一个数据表。现在我把它设置成这样:

表 1:

<h:form id="userProfileViewForm" prependId="false">
    <p:dataTable var="userProfile" value="#{userProfileListBean.objects}"
        id="userProfilesTable" sortBy = "#{userProfile.lastName}" sortFunction = "#{userProfileListBean.sortUserLastName}" sortOrder = "ascending" lazy="true">

        <p:column sortBy="#{userProfile.lastName}" sortFunction = "#{userProfileListBean.sortUserLastName}" id="userName">
p:commandLink>
             <p:commandLink rendered="#{!appContextBean.isCWContext()}"
                    onclick="window.location.href='userBS.xhtml?id=#{userProfile.id}'">
                    <div class="clickable-cell">
                        <h:outputText
                        value="#{userProfile.firstName} #{userProfile.lastName}" />
                    </div>
            </p:commandLink>
        </p:column>

...more columns...

Tab2:相似数据表

<p:dataTable var="athlete" value="#{athleteListBean.objects}"
        tableStyle="width:auto" sortBy="#{athlete.getDisplayName()}" sortFunction = "#{athleteListBean.sortAthleteDisplayName}" id="athletesTable" 
        sortOrder="#{athleteListBean.getListSortOrderDesc()}" lazy="true" paginator="true" rows="15" paginatorPosition="bottom"
            paginatorTemplate="{RowsPerPageDropdown} {FirstPageLink} {PreviousPageLink} {CurrentPageReport} {NextPageLink} {LastPageLink}">

        <p:column sortBy="#{athlete.getDisplayName()}" sortFunction = "#{athleteListBean.sortAthleteDisplayName}" id="athleteColumn">
<h:outputText styleClass="athlete-listing athlete-name" value="#{athlete.firstInitial} #{athlete.lastName}" />
</p:column>

如您所见,我为两个数据表设置了自定义初始排序功能。

由于某种原因,第一个选项卡排序函数被调用,而第二个选项卡排序函数没有。在我交换 tabview 中的选项卡后,tab2 排序函数被调用,但 tab1 没有。

基本上,初始排序功能仅在第一个选项卡的数据表上调用,基于选项卡视图中选项卡的顺序。谁能告诉我为什么会这样?

谢谢您的帮助。

4

2 回答 2

1

我遇到了类似的问题,在我的情况下,第二个选项卡上有 ap:dataTable 和 p:columnToggler,单击按钮隐藏或显示列显示为黑色,无法删除列。

我找到的解决方案是在 p:TabView 内的 p:ajax 中添加事件“tabChange”

这样问题就解决了,我已经在 p:columnToggler 上正常工作了。

也许您可以解决 p:dataTable 的顺序问题。

在这里我把我的代码:

<p:tabView effect="fade" effectDuration="fast"  prependId="false">
    <p:ajax event="tabChange" update="@this"/>
    <p:tab title="#{text['liquidacionForm.tabDatosLiq']}">
       <ui:include src="/datosLiquidacion.xhtml"></ui:include>
     </p:tab>
    <p:tab title="#{text['liquidacionForm.tabEstanciasLiq']}">
       <ui:include src="/estanciasLiquidadas.xhtml"></ui:include>
   </p:tab>
</p:tabView>
于 2014-07-29T06:17:44.717 回答
0

我认为,由于 EL(表达式语言)部分提供了完整的方法名称,根本不会调用您的第二个选项卡排序。

因此,您需要通过执行 getter 部分来删除实际方法名称,即

而不是{athleteListBean.getListSortOrderDesc()使用{athleteListBean.listSortOrderDesc}

将波纹管的代码用于第二个选项卡。

 <p:dataTable var="athlete" value="#{athleteListBean.objects}"
    tableStyle="width:auto" sortBy="#{athlete.displayName}" sortFunction = "#{athleteListBean.sortAthleteDisplayName}" id="athletesTable" 
    sortOrder="#{athleteListBean.listSortOrderDesc}" lazy="true" paginator="true" rows="15" paginatorPosition="bottom"
        paginatorTemplate="{RowsPerPageDropdown} {FirstPageLink} {PreviousPageLink} {CurrentPageReport} {NextPageLink} {LastPageLink}">

    <p:column sortBy="#{athlete.displayName}" sortFunction = "#{athleteListBean.sortAthleteDisplayName}" id="athleteColumn">

于 2014-01-08T12:36:17.087 回答