Posts by Ivan Pereira • 1 point
1 post
-
0
votes1
answer1401
viewsA: Update Datatables table after Ajax request
Instead of calling the table update like this: $(document).ready( function () { buscaProdutos(); } ); Use like this: $('#table').DataTable().ajax.reload()// onde #table é o id da tua tabela Source:…