Jquery Data table Particular Column Search is not working - Search value is not passing to server
Jquery Data table Particular Column Search is not working - Search value is not passing to server
ssaranya
Posts: 1Questions: 1Answers: 0
Particular Search Column - Server not getting search data
var oTable2 = $('#product_master_table').DataTable({
"paginationType":"full_numbers",
"paginate": true,
'processing': true,
'serverSide': true,
'serverMethod': 'post',
"filter": true,
'ajax': ajax_url,
"autoWidth": false,
"searching":true,
dom: "ltip"
});
If i search using this, //right now searching only 3 column
oTable2.columns(3).search(searchTerm,true,false );
This discussion has been closed.
Answers
As shown in the
columns().search()
examples, you need to adddraw()
to execute the search, for example:Kevin