I would like to do some css with my jquery Datatable however the only things I found was with html tables. Is it possible to change the look of a datatable when it takes its data from a js array ?
$('#example').DataTable({
destroy: true,
"scrollY": "200px",
"scrollCollapse": true,
"paging": false,
data: datatable,
columns: [
{ title: "title1" },
{ title: "title2" }
]
});
Is there some parameters I could add here ?