A have the follow code line working very, very well :
var tabelaP = $("#tableAdd").DataTable(); tabelaP.row($(this).closest('tr')).remove().draw();
But, I can't use 'fadeOut()' for animate this process. So, how to delete row with fadeOut() ?!!
This question has an accepted answers - jump to answer
Ladies and Gentlemen!
The problem was solved. I used the follow code:
var linha = $(this).closest('tr');
linha.fadeOut(400, function () { tabelaP.row(linha).remove().draw()
});
hugs!!!!!
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
Ladies and Gentlemen!
The problem was solved. I used the follow code:
var linha = $(this).closest('tr');
linha.fadeOut(400, function () {
tabelaP.row(linha).remove().draw()
});
hugs!!!!!