【问题标题】:Bootstrap-table: Server Side pagination + nextPage methodBootstrap-table:服务端分页+nextPage方法
【发布时间】:2018-04-29 03:09:52
【问题描述】:

我正在使用 Django 和应用程序 Bootstrap-table 来正确格式化我的表格。

我有很多数据,所以我使用服务器端分页。效果很好。

现在我想实现一些方法,例如 nextPage 方法。

通过结合服务端分页的示例jsfiddle +方法nextPage,它不起作用:点击按钮nextPage即使绑定到nextPage方法也不起作用:

http://jsfiddle.net/ThePhi/msj2apLb/1/

<button id="button2" class="btn btn-default">nextPage</button>

<table data-toggle="table"
       data-url="http://issues.wenzhixin.net.cn/examples/bootstrap_table/data"
       data-pagination="true"
       data-side-pagination="server"
       data-page-list="[5, 10, 20, 50, 100, 200]"
       data-search="true"
       data-height="300">
    <thead>
    <tr>
        <th data-field="state" data-checkbox="true"></th>
        <th data-field="id" data-align="right" data-sortable="true">Item ID</th>
        <th data-field="name" data-align="center" data-sortable="true">Item Name</th>
        <th data-field="price" data-sortable="true">Item Price</th>
    </tr>
    </thead>
</table>
<script>
    var $table = $('#table'),

        $button2 = $('#button2');
    $(function () {

        $button2.click(function () {
            $table.bootstrapTable('nextPage');
        });

    });
</script>

【问题讨论】:

  • 在什么情况下不起作用?
  • 点击按钮nextPage:页面没有变化...

标签: django bootstrap-table


【解决方案1】:

我忘了把id="table"...

工作 jsFiddle:http://jsfiddle.net/ThePhi/msj2apLb/1/

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-03-21
    • 2016-06-22
    • 2021-08-18
    • 2019-08-10
    • 2014-03-30
    • 2019-03-17
    相关资源
    最近更新 更多