我正在使用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();
});