Bien te muestro
Código Javascript
:
Ver original$.post("./modulos/buscarAfiliado.php", parametros, function(response){
$("#Mytable").html('');
if (response != null){
$("#Mytable").append(`<thead>
<tr>
<th>Id</th>
<th>Afiliado</th>
<th>Dni</th>
<th>Domicilio</th>
</tr>
</thead><tbody>`);
$.each(JSON.parse(response), function(i, value){
$("#Mytable").append(`<tr onclick="AbrirDeuda(${value.idpagador},'${value.nombre}')">
<td>${value.idpagador}</td>
<td> ${value.nombre}</td>
<td>${value.dni}</td>
<td>${value.domicilio}</td>
</tr>`);
});
$("#Mytable").append(`</tbody>`);
var table = $('#Mytable').DataTable({
"destroy": true,
//"oSearch": {"sSearch": ""},
language: {
"decimal": "",
"emptyTable": "No hay información",
"info": "Mostrando _START_ a _END_ de _TOTAL_ Entradas",
"infoEmpty": "Mostrando 0 to 0 of 0 Entradas",
"infoFiltered": "(Filtrado de _MAX_ total entradas)",
"infoPostFix": "",
"thousands": ",",
"lengthMenu": "Mostrar _MENU_ Entradas",
"loadingRecords": "Cargando...",
"processing": "Procesando...",
"search": "Buscar:",
"zeroRecords": "Sin resultados encontrados",
"paginate": {
"first": "Primero",
"last": "Ultimo",
"next": "Siguiente",
"previous": "Anterior"
}
},
});
}
});
ese codigo se ejecuta al inciar mi pagina, y hasta que ese codigo no craga todo en el datatable, el usaurio no puede ir llenando un input por ejemplo.