Help! filter data colum > 0

Help! filter data colum > 0

alderhernandezalderhernandez Posts: 33Questions: 11Answers: 1

Hi i have a colum with numbers, I need to filter only > 0 with the search input, please any help?

i have try this, but it does not work

var table2 = $('#tbArticulos').DataTable(); $('#tbArticulos_filter input').on( 'keyup', function () { //var that = this.value; //alert(that); var that=0.00; table2 .columns( 6 ) .search( !that ) .draw(); //table.column.search('0.00',true,false).draw(); } );

This discussion has been closed.