csv-to-html-table
csv-to-html-table copied to clipboard
datatables_options "processing": true did not work
Hi!
I've tried to add "processing": true to the datatables_options to display a 'processing' indicator, but this didn't work.
datatables_options: {"processing": true}
How can i do that?
Also: Can i add more than one option comma separated?
Thanks a lot!
@riffraff78 you should be able to add it to datatables_options. Does this work for you?
CsvToHtmlTable.init({
csv_path: "data/Health Clinics in Chicago.csv",
element: "table-container",
allow_download: true,
csv_options: {
separator: ",",
delimiter: '"'
},
datatables_options: {
processing: true
},
custom_formatting: [
[4, format_link]
]
});