Create custom CSS for your javascript spreadsheet
The following example shows a CSS addon to change the core layout of your jquery tables.
Green borders and corners jquery spreasheet
Bootstrap-like jquery spreadsheet exampleYour jquery table can be customized by including an additional addon CSS. If you have created a nice design, please share with us.
Source code
<html> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/js/jquery.jexcel.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/js/jquery.jdropdown.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/css/jquery.jexcel.min.css" type="text/css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/css/jquery.jdropdown.min.css" type="text/css" /> <!-- Optional CSS addon --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jexcel/2.1.0/css/jquery.jexcel.green.min.css" type="text/css" /> <div id="my"></div> <script> data = [ ['BR', 'Cheese', 1, 1900.01], ['CA', 'Apples', 0, 1200.21], ['US', 'Carrots', 1, 400.34], ['GB', 'Oranges', 0, 900.43], ]; $('#my').jexcel({ data:data, colHeaders: ['Country', 'Food', 'Stock', 'Price'], colWidths: [ 300, 100, 100, 100 ], colAlignments: [ 'left', 'left', 'left', 'left' ], columns: [ { type: 'autocomplete', url:'/jspreadsheet/v2/countries' }, { type: 'autocomplete', source:['Apples','Bananas','Carrots','Oranges','Cheese'] }, { type: 'checkbox' }, { type: 'number' }, ] }); </script> </html>