≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
continuously updating table contents with server-side processing
continuously updating table contents with server-side processing
m2a0x
Posts: 1
Questions: 0
Answers: 0
June 2012
edited June 2012
in
General
Hi Guys,
Can anyone suggest me how to set up datatables in order to continuously updating it contents with specific interval. Thanks.
Replies
jimp
Posts: 3
Questions: 0
Answers: 0
June 2012
edited June 2012
I may be wrong, but you can probably set up a timer function to call:
oTable.fnDraw()
at specified intervals.
Something like this:
$(document).ready(function(){
window.SetInterval(oTable.fnDraw, 5000);
});
This discussion has been closed.
Replies
oTable.fnDraw()
at specified intervals.
Something like this:
$(document).ready(function(){
window.SetInterval(oTable.fnDraw, 5000);
});