Table generated by ajax does not fetch datatables
Table generated by ajax does not fetch datatables
I'm use datatables in my project, but when sending ajax and recieve return, my table don't get pagination.
I try this:
function onloadcamp(){
$('#tabela').DataTable();
$("#myModalQuestion").modal('hide');
$("#myModal").modal('show');
var texto = $("#texto").val();
var nome = $("#nome").val();
var datainicio = $("#datainicio").val();
$.ajax({
url: '../production/controller/insertCamp.php',
type: 'POST',
dataType:'json',
data:{nome:nome,texto:texto,datainicio:datainicio},
success: function(retorno){
$("#myModal").modal('hide');
$("#response").html(retorno);
$("#myModalResponse").modal('show');
},
});
}
not found