When deleting a row, the row disappear from the table but info still appear datatable search and Yadcf filter
and if I do a search with delete info the deleted row will be visible in the table (because no page refresh)
I'm deleting the row using PHP and Ajax
The ajax in on a seperate JS file.
I'm not using server side datatable version
success: function(response) {
$("#"+rowId).remove();
},
I have tried with no luck to add one of these to reset or draw the table
//yadcf.exResetAllFilters(table16);
//$("#files-list").DataTable().draw();
The only way I have found to get it the deleted data cleared is to reload the page.
Thanks