Solución:
Puede encontrar más información directamente en este enlace: http://datatables.net/examples/basic_init/filter_only.html
$(document).ready(function() {
$('#example').dataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": true,
"bInfo": false,
"bAutoWidth": false });
});
Espero que ayude !
EDITAR: Si eres vago, “bLengthChange”: falso, es el que necesitas cambiar 🙂
Si usa Datatable> 1.1.0 entonces lengthChange
La opción es lo que necesita de la siguiente manera:
$('#example').dataTable( {
"lengthChange": false
});
"searching": false, // Search Box will Be Disabled
"ordering": false, // Ordering (Sorting on Each Column)will Be Disabled
"info": true, // Will show "1 to n of n entries" Text at bottom
"lengthChange": false // Will Disabled Record number per page
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)