数据表:如何在表结构中显示0到0的0条目旁边显示show Entries下拉列表

时间:2015-05-27 06:56:21

标签: javascript jquery user-interface jquery-datatables jquery-pagination

是否可以在表格结构中显示0到0的0条目旁边显示show Entries下拉列表。我想在底部显示show entries下拉列表以及显示0到0的0条目。< / p>

提前致谢!!!

图片看起来像

现在我想按照第二种方案显示show下拉条目。

the image is with show dropdown at top

Now i want to show the show dropdown entries as per the image two.

1 个答案:

答案 0 :(得分:1)

是的,可以通过dataTables&#34; dom&#34; -attribute实现。 i是信息,l是长度菜单,在l之前插入i

var table = $("#example").DataTable({
   //default is lfrtip 
   dom: 'frtlip'    
});

//lengthmenu -> add a margin to the right and reset clear 
$(".dataTables_length").css('clear', 'none');
$(".dataTables_length").css('margin-right', '20px');

//info -> reset clear and padding
$(".dataTables_info").css('clear', 'none');
$(".dataTables_info").css('padding', '0');

演示 - &gt;的 https://jsfiddle.net/psvf3z75/

enter image description here