如何在Javascript中加载页面期间列出所有数据 - Datatables

时间:2017-06-13 11:03:58

标签: javascript jquery datatables

我在我的页面中使用DataTables Jquery但是有一个问题。当我刷新页面它向我显示完成加载页面的所有数据。在分页后:正在运行

我该如何得到它?

我的数据表代码时钟:

    $(document).ready(function() {
    $('a[data-toggle="tab"]').on( 'shown.bs.tab', function (e) {
        $.fn.dataTable.tables( {visible: true, api: true} ).columns.adjust();
    } );

    $('table.table').DataTable({
    "order": [
      [0, "desc"]
    ],
    paging: true,
    "oLanguage": {
      "sUrl": "js/dil/Turkish.json",
    }
    } );

    // Apply a search to the second table for the demo
    $('#myTable2').DataTable();
} );

分页:加载

0 个答案:

没有答案