我想在jQuery数据表中添加下拉搜索。我已经实现了segment.i要根据用户要求进行一些更改。
这是整个代码段。
<script>
// initialising dt table
$(document).ready(function() {
$('#example').DataTable({
// Definition of filter to display
filterDropDown: {
columns: [
{
idx: 1
},
{
idx: 2
},
{
idx: 3
}
],
bootstrap: true
}
} );
} );
</script>
表HTML就像
<body>
<div class="container">
<table class="table" id="example" class="display" width="100%" cellspacing="0">
<thead>
<tr>
<th>First name</th>
<th>Last name</th>
<th>Position</th>
<th>Office</th>
<th>Salary</th>
</tr>
</thead>...................... + Data
这些是我要删除过滤器名称的修改。在默认情况下进行的搜索中,其名称为all。请参考所附的屏幕截图。 您的帮助将不胜感激。
谢谢。