JqueryデータテーブルからLengthMenu(ページごとに表示されるレコード数を表示するドロップダウンリスト)を非表示にするにはどうすればよいですか?
現在、無効にすることはできますが、まったく表示したくありません。以下の私のフィドルを参照してください :-
testdata = [{"id":"58","country_code":"UK"},{"id":"59","country_code":"US"}];
$('#test').dataTable({
"aaData": testdata,
"aoColumns": [
{ "mDataProp": "id" },
{ "mDataProp": "country_code" }
],
"bLengthMenu" : false, //thought this line could hide the LengthMenu
"bInfo":false,
});
`//the next 2 lines disables the LengthMenu
//var aLengthMenu = $('select[name=test_length]');
//$(aLengthMenu).prop('display', 'disabled');