.entry-option1 {
background-color: transparent;
}
.entry-option2 {
background-color: #32CD32;
}
列i的组件中的定义:
this.columnDefs.push(
{
headerName: 'Options',
field: 'select',
editable: true,
cellEditor: 'select',
cellEditorParams: {
values:[1, 2]
},
cellClass: (params:any) => {
let className = this.getClassName(parseInt(params.value));
return className;
}
});
和这个getClassName:
private getClassForCalendarEntry(value: number): string {
switch (type) {
case 1:
return 'entry-option1';
case 2:
return 'entry-option2';
}
return "";
}
但是这不起作用:更改后的值正确的类名应用于相应的DOM元素,但组件css注入带有属性过滤的结果html(即.entry-option1 [_ng-component1])但是alement没有这个属性,所以风格不适用......
我不希望提取样式为全局样式,但我无法看到解决此问题的另一种方法......任何人都可以帮助我吗?
答案 0 :(得分:0)
我遇到了同样的问题,::ng-deep
为我工作。需要访问组件中不存在或在其他组件中创建的DOM元素。
::ng-deep .entry-option1 {
background-color: transparent;
}