Howto disable iDisplayLength
Howto disable iDisplayLength
xuanlocnet
Posts: 1Questions: 0Answers: 0
Hi everyone!
I want disable iDisplayLength of dataTable to show full row.
But i don`t know how to make it.
Somebody help me ?
I want disable iDisplayLength of dataTable to show full row.
But i don`t know how to make it.
Somebody help me ?
This discussion has been closed.
Replies
try
[code]
$('#example').dataTable({
"iDisplayLength": -1
});
[/code]
this will show all the rows.
Arjun
Thanks,
Stephen