I have simple table , and inside table i have some data to testing the DataTable. I set false to bFilter to hide the original search DataTable , and make my own.
The problem is , my own input Text not filtering data in table. Reference to this, I already to create like this in Jquery.
Jquery
jQuery(document).ready(function ($) {
var table = $("#data-table").DataTable({
bSort: true,
bFilter: false,
iDisplayStart: 0,
iDisplayLength: 20,
sPaginationType: "full_numbers",
sDom: "Rfrtlip",
});
$("#searchFilter").keyup(function () {
table.search($(this).val()).draw();
});
});
But input Text won't filtering , i missed somewhere ?

Table
<input type=\"text\" id=\"searchFilter\" name=\"searchFilter\" placeholder=\"Search...\" style=\"width:200px;\"/>
<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" class=\"stdtable \" id=\"data-table\">
<thead>
<tr>
<th>NO</th>
<th>JUDUL</th>
<th>TANGGAL</th>
<th>RINGKASAN</th>
<th>STATUS</th>
<th>KONTROL</th>
</tr>
</thead>
<tbody>
<tr>
<td>zazaza</td>
<td>asdsada</td>
<td>asdsada</td>
<td>asdsada</td>
<td>asdsada</td>
<td>asdsada</td>
</tr>
<tr>
<td>asdsada</td>
<td>asdsada</td>
<td>asdsada</td>
<td>asdsada</td>
<td>asdsada</td>
<td>asdsada</td>
</tr>
<tr>
<td>remoremoreo</td>
<td>remoremoreo</td>
<td>remoremoreo</td>
<td>remoremoreo</td>
<td>remoremoreo</td>
<td>remoremoreo</td>
</tr>
</tbody>
</table>