Skip to content

Instantly share code, notes, and snippets.

@namieluss
Last active November 18, 2020 13:41
Show Gist options
  • Save namieluss/7254b6656a6be5aad8f5548c0e9e670c to your computer and use it in GitHub Desktop.
Save namieluss/7254b6656a6be5aad8f5548c0e9e670c to your computer and use it in GitHub Desktop.
function initDataTable() {
$('#example').dataTable({
scrollX: true,
scrollY: (window.innerHeight / 2) + "px",
dom: 'Bfrtip',
buttons: [
'colvis',
{
extend: 'csv',
text: 'Download CSV',
exportOptions: {
columns: ':visible'
}
}
]
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment