Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

datatables filter with math functions

Javascript12345678var table = $('#example').DataTable(); var filteredData = table    .column( 0 )    .data()    .filter( function ( value, index ) {        return value > 20 ? true : false;    } );
Source by datatables.net #
 
PREVIOUS NEXT
Tagged: #datatables #filter #math #functions
ADD COMMENT
Topic
Name
9+6 =