我正在尝试实施datatable filter of primeng。 我的代码如下:
<p-column field="time" header="Time" [filter]="true" filterPlaceholder="">
<ng-template pTemplate="filter">
<p-multiSelect [options]="time"></p-multiSelect>
</ng-template>
</p-column>
但它显示错误:无法绑定到'选项',因为它不是'p-multiSelect'的已知属性。
答案 0 :(得分:12)
您需要在导入下的module.ts中导入 import {MultiSelectModule} from 'primeng/primeng';
'
imports: [
MultiSelectModule
]
答案 1 :(得分:1)
您需要安装Angular CDK。使用 npm install @ angular / cdk --save 命令。 使用
将多选模块导入yourModule.module中import {MultiSelectModule} from 'primeng/multiselect';