I have implement the excel export in datatable. Have included the the tabletool reference and SWF put into my local workspace.
var oTable = $("#products").dataTable({
"aaData": newarray,
"bProcessing": true,
"bDeferRender": true,
"bFilter": false,
"bRetrieve": true,
"bPaginate": true,
"bJQueryUI": true,
"sPaginationType": "two_button",
"sDom": '<"H"Tfr>t<"F"ip>',
"oTableTools": {
"sSwfPath": "../swf/copy_csv_xls.swf",
"aButtons": [ "xls" ]
},
"bSort": true,
Its just displaying the Export option in table header, but there is no action , nothing happening.Is there any step i need to do ? if i'm keeping blank without mention oTableTools, print option is working fine , so my environment is working good.
Please advise which step i have not done ?
Thanks