Add individual search columns in the datatables

0

Your support to be able to add individual search engines in the coupons of my data Table. I found this solution and it works correctly but I only have the search which it looks for in all the columns, but I want it to be for each column.

Thanks

<script>
    $(document).ready(function(){                          
        $('#mitabla').DataTable({                                             
            "order": [[0, "asc"]],
            "language":{
                "lengthMenu": "Mostrar _MENU_ registros por pagina",
                "info": "Mostrando pagina _PAGE_ de _PAGES_",
                "infoEmpty": "No hay registros disponibles",
                "infoFiltered": "(filtrada de _MAX_ registros)",
                "loadingRecords": "Cargando...",
                "processing":     "Procesando...",
                "search": "Buscar:",
                "zeroRecords":    "No se encontraron registros coincidentes",
                "paginate": {
                    "next":       "Siguiente",
                    "previous":   "Anterior"
                },                                                                          
            },
            "bProcessing": true,
            "bServerSide": true,
            "sAjaxSource": "server_process.php"
        });          
    });
</script>


<body>      
    <table id="mitabla">
        <thead>
            <tr>
                <th>ID</th>
                <th>Nombre</th>
                <th>Direccion</th>
    
asked by Kevincs7 20.09.2018 в 21:34
source

0 answers