如何更改显示滞后的分页标题

时间:2014-02-03 07:58:22

标签: java struts2 pagination displaytag

我正在使用display tag pagination,我得到这样的横幅

63 items found, displaying 1 to 10.[First/Prev] `1, 2, 3, 4, 5, 6, 7 [Next/Last]`

但我希望它像这样

1, 2, 3, 4, 5, 6, 7 [Next/Last]

是否有任何属性可以自定义分页横幅 分页页面是

    <display:table name="groupInfoBeanList" list="groupInfoBeanList" pagesize="10" requestURI="manageGroupLink" decorator="com.cdr.Decorator.CheckBoxDecorator" class="table table-striped">
        <display:setProperty name="paging.banner.placement" value="bottom" />
        <display:column property="checkBox" title="Select" />
        <display:column property="groupId" title="Group Id" sortable="true" />
        <display:column property="groupDescription" title="Group Description"   />
        <display:column property="companyType" title="Company Type" sortable="true" />
        <display:column property="companyName" title="Company Name" sortable="true" />
    </display:table>

2 个答案:

答案 0 :(得分:0)

您需要做的是更改默认属性在库jar中包含的TableTag.properties文件中定义。

请参阅此link以了解如何覆盖默认属性设置

使用如下标签:

<display:setProperty name="paging.banner.full" value="<span class="pagelinks"> [ <a href="{3}">Next</a>/ <a href="{4}">Last </a>]</span> " />

请给我一些反馈

希望有助于。

答案 1 :(得分:0)

使用此属性 <display:setProperty name="paging.banner.group_size" value="7"/>

这将允许您在分页栏上显示7页。