列排序以在显示表中包括整个内容



我正在使用sortable="true"对带有分页的显示表进行列级排序,但是当我单击标题时,它仅对当前页面内容进行排序。当我转到下一页时,内容仍像以前一样,没有任何排序。有没有办法在单击列标题时对显示表的整个内容进行排序?下面是显示我的显示表的代码。

<display:table class="displayTable" id="person" name="persons" requestURI="personDetails" export="true" pagesize="10" requestURIcontext="false">
    <display:column style="width: 30%; border: 1px solid #000;" title="Date" sortable="true">
            <fmt:formatDate pattern="dd/MM/yyyy HH:mm:ss" value="${person.reportDate}" />
    </display:column>
    <display:column style="width: 30%; border: 1px solid #000;" property="personName" title="Name" sortable="true"/>
    <display:column style="width: 30%; border: 1px solid #000;" property="personAge" title="Age" sortable="true"/>
</display:table>

我有解决方案。在display:table标签中添加sort="list"属性以在排序中包含整个列表,如果不仅显示当前页面将被排序。

<display:table sort="list" class="displayTable" id="person" name="persons" requestURI="personDetails" export="true" pagesize="10" requestURIcontext="false" >
    <display:column style="width: 30%; border: 1px solid #000;" title="Date" sortable="true">
            <fmt:formatDate pattern="dd/MM/yyyy HH:mm:ss" value="${person.reportDate}" />
    </display:column>
    <display:column style="width: 30%; border: 1px solid #000;" property="personName" title="Name" sortable="true"/>
    <display:column style="width: 30%; border: 1px solid #000;" property="personAge" title="Age" sortable="true"/>
</display:table>

相关内容

  • 没有找到相关文章

最新更新