我尝试使用tabletool export来excel。在我的表中有四列:姓名,生日,年龄,薪水。 (列可见年龄和薪水)。好吧,我希望导出excel与列的名称标题,但我不知道。请给我一些建议。
<table id="div_table" class="display cell-border compact" style="width: 100%">
<thead>
<tr>
<td>Name</td>
<td>Birthday</td>
</tr>
</thead>
</table>
"aoColumns": [
{ "mData": "NAME", "aTargets": [0], "sType": "string" },
{ "mData": "BIRTHDAY", "aTargets": [1], "sType": "string" },
{ "mData": "AGE", "aTargets": [2], "sType": "string", "bVisible": false, "bSearchable": false, "orderable": false },
{ "mData": "SALARY", "aTargets": [3], "sType": "string", "bVisible": false, "bSearchable": false, "orderable": false }
],
"tableTools": {
"aButtons": [
{
"sExtends": "xls",
"mColumns": [0, 2, 3]
}
]
}
文件excel的结果为
Name
Green 20 20.000
Blue 15 15.000
Red 10 10.000
没有看到第2列和第2列的名称标题3。我可以用定义名称设置它们吗? 。谢谢你们。
答案 0 :(得分:0)
解决方案,它为我工作,使用&#34; sTitle&#34;:
"sTitle": "Name_Of_Column",