Hi,
I have the problem that my component styles are not assigned to the kendo grid column.
Component Html-Snippet:
<kendo-grid-column field="displayname" title="DisplayName" [class]="'isTrainedColumn'"> </kendo-grid-column>
Component SCSS-Style Snippet:
.isTrainedColumn {
text-align: right;
background-color: red;
}
Generated HTML-Code:
<style>
.isTrainedColumn[_ngcontent-ndt-c454] {
text-align: right;
background-color: red;
}
</style>
Selector is only set at grid level and template level
<kendo-grid _ngcontent-ndt-c454="" ...>
But missing on the TD-Tag