-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error NG8002: Can't bind to 'data' since it isn't a known property of 'ng-multiselect-dropdown'. #404
Comments
+1 |
same using ng-multi-select on angular 14 getting the same error error NG8002: Can't bind to 'data' since it isn't a known property of 'ng-multiselect-dropdown'.
|
I had similar issue and the below resolved it..... AS PER DOCUMENTATION `import { NgMultiSelectDropDownModule } from 'ng-multiselect-dropdown'; @NgModule({ |
Thanks for putting AS PER DOCUMENTATION in caps but unlike the documentation the error occurs when using the component in a custom component. |
facing the same issue in Angular 16. |
Yeap the same here using in a custom cumponent dont works Error: src/app/pages/drug/update/drugform/drugform.component.html:48:3 - error NG8002: Can't bind to 'placeholder' since it isn't a known property of 'ng-multiselect-dropdown'.
48 [placeholder]="'Select Indications'" src/app/pages/drug/update/drugform/drugform.component.ts:22:16 Error: src/app/pages/drug/update/drugform/drugform.component.html:49:3 - error NG8002: Can't bind to 'settings' since it isn't a known property of 'ng-multiselect-dropdown'.
49 [settings]="indicationDropDownSettings" src/app/pages/drug/update/drugform/drugform.component.ts:22:16 |
Degrade or upgrade the version of ng-multiselect-dropdown according to angular version specified in DEMO. |
@aksuna , You might have multiple modules in your project. You need to import the this module in the correct module where you are using this multislect dropdown. |
Angular version: 14.2.11
ng-multiselect-dropdown version: 1.0.0
Description of issue: error NG8002: Can't bind to 'data' since it isn't a known property of 'ng-multiselect-dropdown'.
Steps to reproduce:
Expected result:
Actual result:
Demo: Please share sample code link using StackBlitz or codesandbox
Any relevant code:
The text was updated successfully, but these errors were encountered: