Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/11/2020, 10:48
gylle05
 
Fecha de Ingreso: marzo-2009
Mensajes: 291
Antigüedad: 15 años, 8 meses
Puntos: 1
Respuesta: peticiones al servidor

Bien te muestro

Código Javascript:
Ver original
  1. $.post("./modulos/buscarAfiliado.php", parametros, function(response){
  2.     $("#Mytable").html('');
  3.                  
  4.     if (response != null){
  5.         $("#Mytable").append(`<thead>
  6.             <tr>
  7.                 <th>Id</th>
  8.                 <th>Afiliado</th>
  9.                 <th>Dni</th>  
  10.                 <th>Domicilio</th>                
  11.             </tr>
  12.         </thead><tbody>`);
  13.                      
  14.         $.each(JSON.parse(response), function(i, value){
  15.             $("#Mytable").append(`<tr onclick="AbrirDeuda(${value.idpagador},'${value.nombre}')">
  16.                 <td>${value.idpagador}</td>
  17.                 <td> ${value.nombre}</td>
  18.                 <td>${value.dni}</td>
  19.                 <td>${value.domicilio}</td>
  20.             </tr>`);
  21.         });
  22.  
  23.         $("#Mytable").append(`</tbody>`);
  24.                      
  25.         var table = $('#Mytable').DataTable({
  26.             "destroy": true,
  27.             //"oSearch": {"sSearch": ""},
  28.             language: {
  29.                 "decimal": "",
  30.                 "emptyTable": "No hay información",
  31.                 "info": "Mostrando _START_ a _END_ de _TOTAL_ Entradas",
  32.                 "infoEmpty": "Mostrando 0 to 0 of 0 Entradas",
  33.                 "infoFiltered": "(Filtrado de _MAX_ total entradas)",
  34.                 "infoPostFix": "",
  35.                 "thousands": ",",
  36.                 "lengthMenu": "Mostrar _MENU_ Entradas",
  37.                 "loadingRecords": "Cargando...",
  38.                 "processing": "Procesando...",
  39.                 "search": "Buscar:",
  40.                 "zeroRecords": "Sin resultados encontrados",
  41.                 "paginate": {
  42.                     "first": "Primero",
  43.                     "last": "Ultimo",
  44.                     "next": "Siguiente",
  45.                     "previous": "Anterior"
  46.                 }
  47.             },
  48.         });
  49.     }
  50. });

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.

Última edición por Alexis88; 04/11/2020 a las 12:45 Razón: Highlight