angular2-multiselect-dropdown
angular2-multiselect-dropdown copied to clipboard
I can use this in angular version 11?
I am trying to use this package in angular 11, but I have issue.
I hope to get solution.
I have used this component for angular 11 and 12 and works as intended.
How did you require the component?
You have to import the module which is parent to your current component. import { AngularMultiSelectModule } from 'angular2-multiselect-dropdown';
I've also struggled with this error message. I missed the following from the usage instruction:
Angular's FormsModule is also required.
After adding
imports: [
...
FormsModule,
...
]
to app.module.ts
the error was gone.