11

Following the guide: https://www.primefaces.org/primeng/ I have tried to install PrimeNG to use with Angular4, following the steps detailed above, but I get the error:

'p-dropdown' is not a known element:

I tried to rebuild the projects, as suggested in other posts, but it did not work for me. Any hints?

Here are all the details:

-- PrimeNg Installation

npm install primeng --save

-- file: testdropdown.component.html

<p-dropdown [options]="cities" [(ngModel)]="selectedCity"></p-dropdown>

-- file: testdropdown.component.ts

import { DropdownModule } from 'primeng/primeng';
import { Component, OnInit } from '@angular/core';
import { SelectItem } from 'primeng/primeng';

@Component({
  selector: 'app-testdropdown',
  templateUrl: './testdropdown.component.html',
  styleUrls: ['./testdropdown.component.css']
})
export class TestdropdownComponent implements OnInit {

  cities: SelectItem[];

  selectedCity: string;

  constructor() {

  this.cities = [];
    this.cities.push({ label: 'Select City', value: null });
    this.cities.push({ label: 'New York', value: { id: 1, name: 'New York', code: 'NY' } });
    this.cities.push({ label: 'Rome', value: { id: 2, name: 'Rome', code: 'RM' } });
  }

  ngOnInit() {
  }

}

-- error:

VM1128:185 [CodeLive] HTTP detected: Connecting using WS
zone.js:630 Unhandled Promise rejection: Template parse errors:
Can't bind to 'options' since it isn't a known property of 'p-dropdown'.
1. If 'p-dropdown' is an Angular component and it has 'options' input, then verify that it is part of this module.
2. If 'p-dropdown' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("<p-dropdown [ERROR ->][options]="cities" [(ngModel)]="selectedCity"></p-dropdown>
"): ng:///AppModule/TestdropdownComponent.html@0:12
'p-dropdown' is not a known element:
1. If 'p-dropdown' is an Angular component, then verify that it is part of this module.
2. If 'p-dropdown' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("[ERROR ->]<p-dropdown [options]="cities" [(ngModel)]="selectedCity"></p-dropdown>
Luigi Rubino
  • 564
  • 1
  • 7
  • 17

4 Answers4

20

Import the dropdown module in the module where you declare your component.

   import { DropdownModule } from 'primeng/dropdown';


@NgModule({
  imports: [
   DropdownModule
  ],
  declarations: [TestdropdownComponent ]
 
})
export class myModule { }
Diego Venâncio
  • 5,698
  • 2
  • 49
  • 68
Eduardo Vargas
  • 8,752
  • 2
  • 20
  • 27
  • 2
    In my case importing DropdownModule wasn't enough, please check @Karthik H answer below. – Reven Mar 13 '20 at 15:25
18

If still this issue persists, you might have to test one more thing, i.e., if "FormsModule" is imported, if not import it and try,

import { FormsModule } from '@angular/forms';
import { DropdownModule } from 'primeng/primeng';

@NgModule({
  imports: [
    DropdownModule,
    FormsModule
  ],

This should solve the issue.

Karthik H
  • 1,267
  • 12
  • 13
  • You saved my day. :thumbup: – Simon Zambrovski Apr 10 '18 at 13:53
  • 1
    Exactly, it need FormsModule also !:) – Reven Mar 13 '20 at 15:25
  • How did you know this? That's exactly what my issue was, but the error message was complaining about `If 'p-dropdown' is an Angular component and it has 'ngModel' input, then verify that it is part of this module.` – activedecay Oct 01 '21 at 18:51
  • I have worked on primeng extensively since its earlier versions, and I faced this problem frequently when I try to import components. I didn't deep dive much into this error, but my understanding is, in bootstrap, dropdown doesn't work if you are not importing/linking jquery. FormsModule might be internally using jquery. – Karthik H Oct 04 '21 at 07:44
1

You have to add DropdownModule in imports section in the app module or the module where the TestdropdownComponent is declared.

harilalkm
  • 456
  • 1
  • 4
  • 15
1
Root module file like: app.module.ts. Added something like that. 

import {DropdownModule,AccordionModule,SharedModule, ButtonModule, PanelModule, RadioButtonModule, MessagesModule, KeyFilterModule, FieldsetModule, MessageModule, CalendarModule} from 'primeng/primeng';

@NgModule({
  imports: [
   DropdownModule,
   BrowserModule,
   BrowserAnimationsModule,
   FormsModule,
   AccordionModule,
   PanelModule,
   ButtonModule,
   RadioButtonModule,
   TableModule,
   HttpClientModule,
   ReactiveFormsModule,
   SharedModule,
   MessagesModule,
   KeyFilterModule,
   FieldsetModule,
   CalendarModule,
   MessageModule
  ],
  declarations: [TestdropdownComponent ]

})
export class myModule { }
Bipon Biswas
  • 11,397
  • 1
  • 26
  • 37