2 lines
771 B
JavaScript
2 lines
771 B
JavaScript
|
|
$(document).ready(function(){$(".dataex-html5-flashex").DataTable({dom:"Bfrtip",buttons:["copyFlash","csvFlash","excelFlash","pdfFlash"]}),$(".dataex-html5-separated").DataTable({dom:"Bfrtip",buttons:["copyFlash",{extend:"csvFlash",fieldSeparator:"\t",extension:".tsv"}]}),$(".dataex-html5-name").DataTable({dom:"Bfrtip",buttons:[{extend:"excelFlash",filename:"Data export"},{extend:"pdfFlash",filename:"Data export"}]}),$(".dataex-html5-hidden").wrap('<div id="hide" style="display:none"/>'),$(".dataex-html5-hidden").DataTable({dom:"Bfrtip",buttons:["copyFlash","csvFlash","excelFlash","pdfFlash"]}),$("#vis").one("click",function(){$("#hide").css("display","block")}),$("#resize").on("click",function(){$.fn.dataTable.tables({visible:!0,api:!0}).buttons.resize()})}); |