当数据值为真时,如何修改当前数据的[
类?
目前我只显示一个空值,但更新td
类会显示一个图标。
td
答案 0 :(得分:1)
使用createdCell
选项,如下所示:
columnDefs: [
{ targets: 1, visible: false, searchable: false },
{
targets: 3,
createdCell: function(cell, data, index){
if(data == true){
$(cell).addClass('details-secret');
}
}
},
// ... skipped ...
使用类似方法this example查看createdRow
。