Error "Can't bind to 'cell' since it isn't a known property of 'select-editor'"
See original GitHub issueHi! When I install and import your library on one of my modules I get this errors:
Can't bind to 'cell' since it isn't a known property of 'select-editor'
Can't bind to 'inputClass' since it isn't a known property of 'select-editor'.
Can't bind to 'cell' since it isn't a known property of 'textarea-editor'.
Can't bind to 'inputClass' since it isn't a known property of 'textarea-editor'.
Can't bind to 'cell' since it isn't a known property of 'checkbox-editor'.
Can't bind to 'inputClass' since it isn't a known property of 'checkbox-editor'.
Can't bind to 'cell' since it isn't a known property of 'completer-editor'.
Can't bind to 'cell' since it isn't a known property of 'input-editor'.
Can't bind to 'inputClass' since it isn't a known property of 'input-editor'.
It crash my entire app, and shows even before of using it, only importing it.
I am using:
- “@angular/core”: “2.2.1”
- “ng2-smart-table”: “^0.5.3-0”
Issue Analytics
- State:
- Created 7 years ago
- Reactions:3
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Can't bind to 'ngSelected' since it isn't a known property of ...
I found the solution. In my code, I was using the [value] with the [selected]. I removed the [value] and now the [selected]...
Read more >Can you remember "Can't bind 'x' since it is not a known ...
This error often means that you haven't declared the directive "x" or haven't imported the NgModule to which "x" belongs.
Read more >Can't Bind to ngModel since it isn't a known property of select
To fix this error you will have to import the FormsModule class in your app.module.ts file, followed by updating your @NgModule() decorator. import...
Read more >can't bind to 'label' since it isn't a known property of 'button'
You need to import { REACTIVE_FORM_DIRECTIVES } from '@angular/forms' in your controller and add it to directives in @Component . That will fix...
Read more >Common errors in Angular: Can't bind to since it isn't a known ...
Ever made an Angular application , opened your console and saw an error message similar to: “Can't bind to ngclass since it isn't...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I fixed it. It was a dependency problem. Check your installed packages by
$ npm list
and see if you have any UNMET DEPENDENCYSame issue.
“@angular/core”:“2.2.3” “ng2-smart-table”:“^0.5.3-0” “angular-cli”: “1.0.0-beta.19-3” “typescript”:“~2.0.3”