大家好我想将导出文件名设置为我的数据表我如何使用jquery datatable这样做,有人可以帮我解决这个问题,谢谢
答案 0 :(得分:2)
您可以通过sTitle属性设置此项,检查给定代码
tableTools: {
"aButtons": [
{
"sExtends": "pdf",
"sTitle": "Customer Fefeedbacks"
}
]
}
答案 1 :(得分:1)
我刚才知道默认情况下它将page-title作为导出文件名。所以我破解它并使用Jquery更改页面的倾斜度。
$('title').html("Your custom filename");
答案 2 :(得分:1)
{{1}}
答案 3 :(得分:0)
"oTableTools": {
"sSwfPath": "assets/media/swf/copy_csv_xls_pdf.swf",
"aButtons": [
{"sExtends": "xls",
"sButtonText": "<span style='color:#fff;'><i class='icon-download-alt icon-white '></i> Excel </span>",
"sToolTip": "Save to Excel",
"mColumns": [1, 2, 3, 4, 5, 6,7,8,9,10,11,12,13,14,15,16],
"sFileName":"here you can change the file name !!!",//<-
"sTitle": "Title"
}]
}