我正在使用jQuery数据表。
我想删除默认情况下添加到表中的搜索栏和页脚(显示有多少行可见)。我只是想用这个插件来排序。这能做到吗?
我正在使用jQuery数据表。
我想删除默认情况下添加到表中的搜索栏和页脚(显示有多少行可见)。我只是想用这个插件来排序。这能做到吗?
当前回答
在这里你可以添加到sDom元素到你的代码,顶部搜索栏是隐藏的。
$(document).ready(function() {
$('#example').dataTable( {
"sDom": '<"top">rt<"bottom"flp><"clear">'
} );
} );
其他回答
我通过为footer分配一个id,然后使用css进行样式化来做到这一点:
<table border="1" class="dataTable" id="dataTable_${dtoItem.key}" >
<thead>
<tr>
<th></th>
</tr>
</thead>
<tfoot>
<tr>
<th id="FooterHidden"></th>
</tr>
</tfoot>
<tbody>
<tr>
<td class="copyableField"></td>
</tr>
</tbody>
</table>
然后使用CSS样式:
#FooterHidden{
display: none;
}
如上所述的方法并不适合我。
请访问http://www.datatables.net/examples/basic_init/filter_only.html查看要显示/隐藏的特性列表。
你想要的是将“bFilter”和“bInfo”设置为false;
$(document).ready(function() {
$('#example').dataTable( {
"bPaginate": false,
"bFilter": false,
"bInfo": false
} );
} );
这可以通过简单地改变配置来完成:
$('table').dataTable({
paging: false,
info: false
});
但要隐藏空页脚;这段代码做到了:
$('table').dataTable({
paging: false,
info: false,
//add these config to remove empty header
"bJQueryUI": true,
"sDom": 'lfrtip'
});
如果你正在使用themeroller:
.dataTables_wrapper .fg-toolbar { display: none; }
在这里你可以添加到sDom元素到你的代码,顶部搜索栏是隐藏的。
$(document).ready(function() {
$('#example').dataTable( {
"sDom": '<"top">rt<"bottom"flp><"clear">'
} );
} );