Column filters
Enable column filters on your javascript dynamic tables.
Source code
<html> <script src="https://bossanova.uk/jspreadsheet/v4/jexcel.js"></script> <link rel="stylesheet" href="https://bossanova.uk/jspreadsheet/v4/jexcel.css" type="text/css" /> <script src="https://jsuites.net/v4/jsuites.js"></script> <link rel="stylesheet" href="https://jsuites.net/v4/jsuites.css" type="text/css" /> <div id="spreadsheet"></div> <script> var data1 = [ ['US', 'Cheese', '2019-02-12'], ['CA', 'Apples', '2019-03-01'], ['CA', 'Carrots', '2018-11-10'], ['BR', 'Oranges', '2019-01-12'], ]; mySpreadsheet = jspreadsheet(document.getElementById('spreadsheet'), { data:data1, columns: [ { type: 'dropdown', url:'https://bossanova.uk/jspreadsheet/v4/countries', width:200, }, { type: 'text', width:200, }, { type: 'calendar', width:200, }, { type: 'checkbox', width:200, } ], filters: true, allowComments:true, }); </script> </html>