how this function work can any one explain flow $.fn.dataTable.ext.search.push below function nowork
how this function work can any one explain flow $.fn.dataTable.ext.search.push below function nowork
dhawalbhatt
Posts: 3Questions: 2Answers: 0
# $.fn.dataTable.ext.search.push(
# function( settings, data, dataIndex ) {
# alert("hello");
# }
# );
$(document).ready(function() {
var table = $('#example').DataTable();
// Event listener to the two range filtering inputs to redraw on input
$('#min, #max').keyup( function() {
table.draw();
} );
} );
Edited by Allan - Syntax highlighting. Details on how to highlight code using markdown can be found in this guide.
This discussion has been closed.
Answers
this is my table
Thanks for your question. As noted in the forum rules, please post a link to a running test case showing the issue so we can offer some help. 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.
Allan