continuously updating table contents with server-side processing

continuously updating table contents with server-side processing

m2a0xm2a0x Posts: 1Questions: 0Answers: 0
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

  • jimpjimp Posts: 3Questions: 0Answers: 0
    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.