Initial Rows

Initial Rows

gavakiegavakie Posts: 4Questions: 0Answers: 0
edited November 2010 in General
How can I change the initial rows shown from 10 to 25?

Replies

  • anjibmananjibman Posts: 115Questions: 10Answers: 0
    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.