How to make custom buttons in DataTable?

How to make custom buttons in DataTable?

belmarkjunecadaybelmarkjunecaday Posts: 1Questions: 1Answers: 0
edited July 2015 in Free community support

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?

This discussion has been closed.