JQuery数据表未立即加载/禁用autolaod

时间:2017-07-16 10:50:46

标签: javascript jquery datatables

我正在使用JQuery Datatables 1.10.15我想在加载数据之前首先搜索,因为我有300,000多行,可能像

if (table not loaded) {
    (load the table)
}
else {
    (Search)
}

或任何其他方式,请帮助我

这是我的代码:

var mytable = $('#myDatatable').DataTable({
"ajax": {
    "url": '/Home/GetAllRecords',
    "type": "POST",
    "datatype": "json",
    "data": (records)
},
"columns": [
    { "data": "id", "autoWidth": true },
    { "data": "name", "autoWidth": true }
]
});

$('#btnSearch').on("click", function () {
    mytable.ajax.reload();
});

0 个答案:

没有答案