search() for individual column is not working
search() for individual column is not working
markvj
Posts: 1Questions: 0Answers: 0
$('#purchase_data tfoot th').each( function () {
var title = $(this).text();
$(this).html( '<input type="text" placeholder="Search '+title+'" />' );
} );
var purchasedataTable = $('#purchase_data').DataTable();
processeddata.columns().every( function ( colIdx ) {
$( 'input', processeddata.column( colIdx ).footer() ).on( 'keyup change', function () {
// alert(colIdx.value);
processeddata.column(colIdx).search( this.value ).draw();
} );
} );
kindly can any one tell, whats wrong in above code, because when i'm searching for some data in column, its not displayed matched records.
This discussion has been closed.
Replies
Hi @markvj ,
There's not much to go on there. Hopefully this working example will help.
If not, we're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here.
Cheers,
Colin