I want to add only Print Button But this code show all button what is wrong with my code.
I want to add only Print Button But this code show all button what is wrong with my code.
 umargulzar1122            
            
                Posts: 1Questions: 1Answers: 0
umargulzar1122            
            
                Posts: 1Questions: 1Answers: 0            
            var table = $('#reportFee').DataTable();
    var tableTools = new $.fn.dataTable.TableTools( table);
$( tableTools.fnContainer() ).insertBefore('#reportFee_wrapper');
This discussion has been closed.
            
Answers
Looks like you are using TableTools which has been deprecated. In its place you should use the Buttons extension.
Kevin