我有一张桌子。在表中,最后一列只包含两个图像,通过使用数据表,我以csv格式保存表的记录。但我想从csv文件中排除最后一列,因为它只包含2个图像。怎么做。请帮我。我的代码就像:
$('#example').dataTable( {
"bProcessing": true,
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"sDom": 'T<"clear">lfrtip',
"oLanguage": {
"sSearch": "Search all columns:"
},
"oTableTools": {
"aButtons": [{
"sExtends": "csv",
"sButtonText": "Save to CSV"
}]
},
"aoColumns": [
null,
null,
null,
{ "bSortable": false }, // disable the sorting property for checkbox header
null,
null,
null,
{ "bSortable": false } // disable the sorting property for checkbox header
]
} );
答案 0 :(得分:0)
通过使用列默认值,可以通过使列不可见来实现此目的。
"aoColumnDefs": [{
"bSearchable": false,
"bVisible": false,
"aTargets": [4]
}]