简体   繁体   中英

Jquery datatable tabletool Save as Excel, CSV, PDF, copy and print not working when deployed on IIS7.5

I have implemented the Save as Excel, CSV, copy and print tools in my website, and it is working perfectly when I run the website locally. When I deployed the website on IIS7.5 the buttons do not work at all. I've noticed that when I hover over the buttons and right click the flash information does not show up. What could be this problem? Could it be a security issue?

It sounds very much like you are using a relative path for the .swf file that becomes broken when you deploy to the server :

...
oTableTools: {
   sSwfPath: "/path-to-datatables/extras/TableTools/media/swf/copy_csv_xls_pdf.swf",
   ...
}
...

use an absolute path instead :

...
oTableTools: {
   sSwfPath: "http://example.com/path-to-datatables/extras/TableTools/media/swf/copy_csv_xls_pdf.swf",
   ...
}
...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM