*my jsfiddle: http://jsfiddle.net/6e9r2js1/
this is someone's reference working link: http://jsfiddle.net/8c96qx2z/
this is someone's reference working link: http://jsfiddle.net/a3o3yqkw/
this is my code:
<table id="tabledetail">
<thead>
<tr>
<th>S.#</th>
<th>Name</th>
<th>Type</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td><input type="text" id="name_1" name="myName[]" value="Ben"></td>
<td>
<select class="form-control" id="type_1" name="myType[]">
<option value="0" selected>No</option>
<option value="1">Yes</option>
</select>
</td>
</tr>
<tr>
<td>2</td>
<td><input type="text" id="name_2" name="myName[]" value="Dan"></td>
<td>
<select class="form-control" id="type_2" name="myType[]">
<option value="0">No</option>
<option value="1" selected>Yes</option>
</select>
</td>
</tr>
</tbody>
</table>
<script>
var table = $('#tabledetail').DataTable({
'orderCellsTop': true,
'fixedHeader' : true,
'paging' : true,
'lengthChange' : true,
'searching' : true,
'ordering' : true,
'info' : true,
'autoWidth' : true,
'columnDefs' : [{ "type": "html-input", "targets": ['_all'] }]
});
</script>
On type its not searching...