come to the table data of Ajax. When starting work function
[code]$ ('# dt_example1'). dataTable ().fnAddData ([1,1,1,1,1,1,1,1])[/code]
it is not going to add a new line, and makes no new Ajax inquiry
I did not properly written, instead of adding a new row , datatales again makes a request to the server, I decided to do through jQuery
[code] $('#dt_example1 tbody').prepend('1....'); [/code]
Are you using server-side processing? If so, then yes, every draw will make an Ajax request to the server (that's the basic operation of server-side processing).
Replies
Allan
[code] $('#dt_example1 tbody').prepend('1....'); [/code]
Allan