javascript - Remove buttons from Data Tables Color Admin Templete -


i have bootstrap color admin template, , have used (color admin table button) want remove copy button data-tables. there way can remove? have placed following code in java script please check.

<script>      $(document).ready(function() {          tablemanagebuttons.init();     }); </script> 

check this

$('#data-table').datatable( {     buttons: [         'print','csv', 'excel', 'pdf'    ] }); 

Comments