我目前遇到的问题是让ngx-datatable拥有正确的css。我在我的css文件中有这个导入正确的CSS。
@import '@swimlane/ngx-datatable/release/index.css';
@import '@swimlane/ngx-datatable/release/themes/material.css';
@import '@swimlane/ngx-datatable/release/assets/icons.css';
似乎只做了它想做的事情的一半。这是我的html调用库的部分。
<ngx-datatable class="material striped"
class="material"
[rows]="rows"
[columns]="columns"
[columnMode]="'force'"
[headerHeight]="50"
[footerHeight]="50"
[rowHeight]="100">
</ngx-datatable>
如果有人知道为什么会这样,那将会非常有帮助。
@amcdnl任何线索,如果您阅读此内容,请抓紧打扰
答案 0 :(得分:22)
我认为它与视图封装有关。基本上你的css将使用像[_ngcontent-c5]这样的属性,因为模板里面的元素会自动拥有它。
但是,数据表添加到dom中的项目可能没有该属性导致样式无效。
你可以通过向你的组件添加选项封装:ViewEncapsulation.None来解决这个问题:
import { ViewEncapsulation } from '@angular/core';
@Component({
[...] // other code like template and style urls
encapsulation: ViewEncapsulation.None
})