≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Initial Rows
Initial Rows
gavakie
Posts: 4
Questions: 0
Answers: 0
November 2010
edited November 2010
in
General
How can I change the initial rows shown from 10 to 25?
Replies
anjibman
Posts: 115
Questions: 10
Answers: 0
November 2010
Check this link http://www.datatables.net/usage/options for 'iDisplayLength' option.
[code]
$(document).ready( function() {
$('#example').dataTable( {
"iDisplayLength": 25
} );
} )
[/code]
This discussion has been closed.
Replies
[code]
$(document).ready( function() {
$('#example').dataTable( {
"iDisplayLength": 25
} );
} )
[/code]