我试图在我的ngx-datatable中为我的单元格添加一个类。
columns.push({
cellTemplate: this.bodyPositionsTmpl,
cellClass: 'test',
headerTemplate: this.headerPositionsTpl,
name: 'Employments',
width: this.planningGridColumnWidths.position,
frozenLeft: true,
frozenRight: false
});
然而,当我检查我的元素时,我不会看到该类添加:
<datatable-body-cell ....... class="datatable-body-cell sort-active">
它不应该出现在这里吗?
答案 0 :(得分:0)
它确实可以正常工作。我刚刚把班级添加到错误的地方。遗憾!