mostrar solo algunos campos de texto datatable
mostrar solo algunos campos de texto datatable
fernandouc
Posts: 1Questions: 1Answers: 0
Help me please, éste código muestra un campo de texto en cada columna para realizar la búsqueda.
mi gran duda es cómo modificarlo para que solo me muestre algunos campos de texto, y no todos...
$(document).ready(function(){
var table = $('#example').DataTable({
orderCellsTop: true,
fixedHeader: true
});
//Creamos una fila en el head de la tabla y lo clonamos para cada columna
$('#example thead tr').clone(true).appendTo( '#example thead' );
$('#example thead tr:eq(1) th').each( function (i) {
var title = $(this).text(); //es el nombre de la columna
$(this).html( '<input type="text" placeholder="Search...'+title+'" />' );
$( 'input', this ).on( 'keyup change', function () {
if ( table.column(i).search() !== this.value ) {
table
.column(i)
.search( this.value )
.draw();
}
} );
} );
});