Table tools without SWF file for down load excel
Table tools without SWF file for down load excel
nandrai
Posts: 26Questions: 0Answers: 0
can i use table tools for only downloading to excel without using the swf file. I donot require the copy functionality in my application.
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