我的数据表有以下初始化:
$(document).ready(function() {
$('.datatable').dataTable({
dom: 'Bfrtip',
buttons: [
{
extend: 'copyHtml5',
text: 'Copy Content to Clipboard',
className: 'btn',
},
{
extend: 'excelHtml5',
text: 'XLS Download',
className: 'btn',
"mColumns": [ 8 ]
},
{
extend: 'csvHtml5',
text: 'CSV Download',
className: 'btn',
"mRender": function (data, type, row) {
console.log(data);
}
},
],
});
});
我正在使用数据表按钮,因为 tabletools 已从数据表中弃用并尝试了许多选项:
"mRender": function (data, type, row) {
console.log(data);
}
也试过:
"mColumns": [ 8 ]
我尝试以各种方式应用不同的参数,但我的理解中缺少一些东西。请帮助。
谢谢。