dataTables Export to Excel button is not showing

前端 未结 2 462
谎友^
谎友^ 2021-02-11 16:01

I have a problem in jquery dataTables. The \"Export to Excel\" is not showing in iPad and mobile devices. It is showing in desktop. Other buttons like copy, csv and pdf are show

2条回答
  •  你的背包
    2021-02-11 16:35

    I know this is super old but since I was using Webpack 4 and Babel and I was importing the files (ES6) I had to put in the global scope the jsZip:

    import 'datatables.net-bs';
    import jsZip from 'jszip';
    import 'datatables.net-buttons-bs';
    import 'datatables.net-buttons/js/buttons.colVis.min';
    import 'datatables.net-buttons/js/dataTables.buttons.min';
    import 'datatables.net-buttons/js/buttons.flash.min';
    import 'datatables.net-buttons/js/buttons.html5.min';
    
    // This line was the one missing
    window.JSZip = jsZip;
    

    Hope it helps Cheers

提交回复
热议问题