2016-08-16 8 views
2

私は、テーブルの上部にShow []エントリを持つjQuery Datatablesを使用しています。しかし、私はそれを一番下に移したいと思う。show [] entries datatable change position

$(document).ready(function() { 
    $('#ple').dataTable({ 
    "dom": '<"pull-left"f><"pull-bottom"l>tip' 
    }); 
}); 
+2

https://datatables.net/examples/basic_init/dom.html:

以下は私のjQueryのコードです –

答えて

1
$(document).ready(function() { 
    $('#ple').dataTable({ 
    bLengthChange: true, 
    "sDom": 'Rlfrtlip', 
    }); 
    //If it shows multiple show[] entries then use following line to hide top one 
    //$("#machineStatusTabel_length:first").hide() 
});