≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Table tools without SWF file for down load excel
Table tools without SWF file for down load excel
nandrai
Posts: 26
Questions: 0
Answers: 0
July 2013
edited July 2013
in
General
can i use table tools for only downloading to excel without using the swf file. I donot require the copy functionality in my application.
Replies
allan
Posts: 65,829
Questions: 1
Answers: 10,953
Site admin
July 2013
No - the local file save uses the SWF as well.
Allan
nandrai
Posts: 26
Questions: 0
Answers: 0
July 2013
ok, Thank you very much.
nandrai
Posts: 26
Questions: 0
Answers: 0
August 2013
[code]
$(document).ready( function () {
$('#myTable').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
{
"sExtends": "xls",
"sButtonText": ""
}
]
},
"sPaginationType": "full_numbers",
"bSortClasses":false
} );//datatable
} );//reday
[/code]
the down load functionality some times does not work in Firefox and Chrome, It is not consistent for some reason. How to address this issue.
Thanks
Nand
This discussion has been closed.
Replies
Allan
$(document).ready( function () {
$('#myTable').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
{
"sExtends": "xls",
"sButtonText": ""
}
]
},
"sPaginationType": "full_numbers",
"bSortClasses":false
} );//datatable
} );//reday
[/code]
the down load functionality some times does not work in Firefox and Chrome, It is not consistent for some reason. How to address this issue.
Thanks
Nand