蒲公英DataTable Theamleaf - Pagination松散

时间:2016-05-12 14:41:08

标签: spring-mvc thymeleaf dandelion

我在1.1.0版,Thymeleaf和Spring MVC中使用蒲公英DataTable组件

我可以使用数据过滤表格,我可以使用分页。

我对这种情况有疑问:

  • 我点击一行数据,然后在新页面中显示其详细信息
  • 我返回DataTable(上一页),在这里,我放松了分页和数据的数量(数据表的状态未保存。

以下是我的代码部分:

<table id="table_result" class="table table-striped table-bordered table-hover table-responsive" dt:table="true" dt:url="@{/accor/orders/search}" 
dt:sortable="true" dt:pagingType="full_numbers"
dt:lengthMenu="'10,25,50,100'" dt:pageable="true" dt:info="true" dt:dom="lpirt" dt:theme="bootstrap2" dt:serverside="true" dt:processing="true" 
dt:ajaxParams="getExtraParams" dt:autowidth="false" dt:filterSelector="#filterButton">

如何保存DataTable的状态?

2 个答案:

答案 0 :(得分:0)

为此行为添加StateSaveStateLoad回调 official documentation中有一些例子。

答案 1 :(得分:0)

Just add the attribute <table ... dt:statesave="true"> and it will store in your local storage the current state.

No need to write custom callbacks ;)