[ Library/DataTables ]
각 cell의 값을 가져와서 체크박스 disable 시키기
2022-05-09 11:49:33
columDefs: [ { targets:0, createdCell: function (td, cellData, rowData, row, col) { if (col === 0) { if (rowData.serviceUseStcd !== '00102100') { oTable.api().cell(row, col).checkboxes.disable(); } } }, } ]