Stripes:在jsp页面的html表格中分页

时间:2015-10-08 09:49:53

标签: javascript jquery ajax jsp stripes

我使用条带java框架。我有jsp页面:

<table id="mlTable" style="">
    <col width="200">
    <col width="250">
    <thead> 
        <tr>
            <th align="center"><p>Name</p></th>
    <th align="center"><p>Address</p></th>
    </tr>
    </thead> 
    <c:forEach items="${actionBean.mLocations}" var="ml">
        <tr>
            <td><p>${ml.name}</p></td>
            <td><p>${ml.address}</p></td>
        </tr>
    </c:forEach>

</table>

在我的actionbean中,我返回列表:

public List<Location> getmLocations() {
        mLocations = wrapperBean.getLocations();
    return mLocations;
}

我想要的是分页因为列表很长。分页必须是异步的,无需重新加载页面。因为我也有搜索字段,并且该值必须保留在字段中。我不想使用DISPLAYTAG,因为我在桌面上添加了一些自定义类。我能做什么?请帮忙

1 个答案:

答案 0 :(得分:0)

您可以使用诸如List.js之类的Javascript库来分页HTML表客户端。这样可以避免刷新页面,但如果数据量确实惊人,则可能会导致性能问题,因为您总是会下载整个内容(但每次加载页面本身只需要一次)。