I've coded three types of export table data facilities i.e. PNG, XLS and WORD. In my HTML table I want to exclude from exporting the last column which has options edit & delete.And also XLS and WORD row which I want to include.
<button class="btn"><i class="fa fa-bars"></i> Export Table Data</button>
<ul class='id_ul'>
<li><a href="#" onClick ="$('#datawtable').tableExport({type:'excel',escape:'false'});"> <img src='icons/xls.png' width='24px'> XLS</a></li>
<li><a href="#" onClick ="$('#datawtable').tableExport({type:'doc',escape:'false'});"> <img src='icons/word.png' width='24px'> Word</a></li>
<li><a href="#" onClick ="$('#datawtable').tableExport({type:'png',escape:'false'});"> <img src='icons/png.png' width='24px'> PNG</a></li>
</ul>
I'd tried to write a function on onClick to do this but doesn't help.
onclick you should call a function refer
where functionRef is a function - often a name of a function declared elsewhere or a function expression.
Do This=>
HTML:
Js: