我正在使用这个引导程序表 http://wenzhixin.net.cn/p/bootstrap-table/docs/examples.html#client-side-pagination-table
,默认页面大小为10.如何在加载网格时将其更改为5或任何内容。
它提供了选择它data-page-list="[5,10]"
的选项,但默认情况下在加载时它保持10。
答案 0 :(得分:7)
您可以使用pageSize
的页面bootstrap table
属性
$('#table-javascript').bootstrapTable({
cache: false,
height: 400,
striped: true,
pagination: true,
pageSize: 5, //specify 5 here
pageList: [5, 10, 25, 50, 100, 200]//list can be specified here
});
阅读 Docs
答案 1 :(得分:0)
仅使用html,使用data-page-size=5
:
http://jsfiddle.net/ThePhi/pamsqcea/
答案 2 :(得分:0)
您可以在表格标签中使用data-page-size =“PAGE_SIZE”属性。 例如。
<table class="table table-hover text-center" id="table" data-height="400" data-show-columns="true" data-toggle="table" data-search="true" data-show-export="true" data-pagination="true" data-click-to-select="true" data-toolbar="#toolbar" data-page-size="50" data-show-columns="true">
<thead>
</thead>
<tbody>
</tbody>
</table>