How to make custom buttons in DataTable?
How to make custom buttons in DataTable?
table = $("#myTable").DataTable({
"dom" : '<"H"lTf>t<"F"ip>',
"tableTools " : {
"aButtons " : [
"text "
]
},
"bJQueryUI": true,
"oLanguage" : {
"sSearch" : "Search all Columns:",
"sInfoFiltered": ""
}
});
That's how i constructed my DataTable. But I'm seeing copy,csv,excel,pdf, and print buttons, not my custom button that I want. I don't want those 5 collection buttons. How to make them disappear?