Hi Yesterday I installed angular seed
and I followed https://github.com/mgechev/angular-seed/wiki/Add-PrimeNG
and http://www.primefaces.org/primeng/#/datatable
but I am getting
Unhandled Promise rejection: Template parse errors:
Can't bind to 'value' since it isn't a known property of 'p-dataTable'.
Could someone help me to integrate angular seed with primefaces for datatabe?
You haven't seem to imported DataTableModule.
you are right the solution was:
inside home.module.ts
import { DataTableModule } from 'primeng/primeng';
@NgModule({
imports: [CommonModule, SharedModule, DataTableModule],
Thank you @cagataycivici
I'm facing the same problem for OrderListModule.
Can't bind to 'value' since it isn't a known property of 'p-orderList'.
Imported
import {OrderListModule} from 'primeng/components/orderlist/orderlist';
in app.component.ts
@sga-lalitesh sorry for delay
could you do please a plnkr for your case?
http://plnkr.co/edit/Qi2Nw2imLpDUF8NJinYw?p=preview
Can't bind to 'value' since it isn't a known property of 'p-growl' .... i have got this error while compiling could anyone clarify this please............
Most helpful comment
you are right the solution was:
inside home.module.ts
import { DataTableModule } from 'primeng/primeng';
@NgModule({
imports: [CommonModule, SharedModule, DataTableModule],
Thank you @cagataycivici