admin管理员组文章数量:1341455
I'm trying to refresh my table with data from the server every few seconds. It's loading the new data but the pagination is not working at all. By that I mean, it's one big list of the data. It's also saying Showing 0 to 0 of 0 entries (filtered from NaN total entries)
for the pagination at the bottom of the table.
I am using draw(false) in a setInterval
function to achieve the refresh. I wanted to do this without using "serverSide":"true"
but I found that draw()
doesn't call the ajax
url unless I use the serverSide
option.
function myFunction() {
var table1 = $("#example1").dataTable({
"ajax": '/api/GetData',
"serverSide": "true",
"columns": [
{
"data": "DateCreated",
},
{ "data": "UserName" }
],
"destroy": true
});
setInterval(function test() {
table1.draw(false);
}, 3000);
}
When I omit "serverSide":"true"
the table is drawn correctly with the pagination but the ajax is not called with draw()
. How can I get the ajax data and have the pagination set correctly?
I'm trying to refresh my table with data from the server every few seconds. It's loading the new data but the pagination is not working at all. By that I mean, it's one big list of the data. It's also saying Showing 0 to 0 of 0 entries (filtered from NaN total entries)
for the pagination at the bottom of the table.
I am using draw(false) in a setInterval
function to achieve the refresh. I wanted to do this without using "serverSide":"true"
but I found that draw()
doesn't call the ajax
url unless I use the serverSide
option.
function myFunction() {
var table1 = $("#example1").dataTable({
"ajax": '/api/GetData',
"serverSide": "true",
"columns": [
{
"data": "DateCreated",
},
{ "data": "UserName" }
],
"destroy": true
});
setInterval(function test() {
table1.draw(false);
}, 3000);
}
When I omit "serverSide":"true"
the table is drawn correctly with the pagination but the ajax is not called with draw()
. How can I get the ajax data and have the pagination set correctly?
2 Answers
Reset to default 10Use ajax.reload() to reload the table data from the Ajax data source with false
as a second parameter to avoid resetting current paging position.
table1.api().ajax.reload(null, false);
Since your table is initialized using dataTable()
, API methods can be accessed with table1.api()
method. Otherwise, if table is initialized using DataTable()
, API methods can be accessed using table1
directly. See DataTables API for more information.
Make sure your AJAX function is returning: sEcho, iTotalRecords, iTotalDisplayRecords and iDisplayLength.
Also, set "iDisplayLength": 500, at client-side when you call dataTable function.
You can read more about these parameters on https://datatables/forums/discussion/512/clarification-of-itotalrecords-and-itotaldisplayrecords
本文标签: javascriptDatatables refresh with draw()AjaxpaginationStack Overflow
版权声明:本文标题:javascript - Datatables refresh with draw(), ajax, pagination - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743668350a2519114.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论