question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[(ngModel)] not works: Can't bind to 'ngModel' since it isn't a known property of 'ng-select'.

See original GitHub issue

I’m trying to use the official example, but I can not make it work. The example and the page not load. This error message appears in console:

Uncaught Error: Template parse errors:
Can't bind to 'ngModel' since it isn't a known property of 'ng-select'.
1. If 'ngModel' is an Angular directive, then add 'CommonModule' to the '@NgModule.imports' of this component.
2. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("

           placeholder="Select city"
           [ERROR ->][(ngModel)]="selectedItem"
           >
</ng-select>
"): ng:///SalesModule/SaleListComponent.html@5:11
    at syntaxError (compiler.js:485)
    at TemplateParser.parse (compiler.js:24661)
    at JitCompiler._parseTemplate (compiler.js:34601)
    at JitCompiler._compileTemplate (compiler.js:34576)
    at eval (compiler.js:34477)
    at Set.forEach (<anonymous>)
    at JitCompiler._compileComponents (compiler.js:34477)
    at eval (compiler.js:34347)
    at Object.then (compiler.js:474)
    at JitCompiler._compileModuleAndComponents (compiler.js:34346)

My code:


<ng-select [items]="cities"
           bindLabel="name"
           bindValue="id"

           placeholder="Select city"
           [(ngModel)]="selectedItem"
           >
</ng-select>

And:

import { Component, OnInit } from '@angular/core';
import {NgOption} from "@ng-select/ng-select";

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

    cities: NgOption[] = [
        {id: 1, name: 'Vilnius'},
        {id: 2, name: 'Kaunas'},
        {id: 3, name: 'Pabradė'},
        {id: 3, name: 'Klaipėda'},
        {id: 3, name: 'Nida'}
    ];
    selectedItem: any;

  constructor(
  ) { }

  ngOnInit() {
      this.selectedItem = this.cities[0].id;
  }

}

The example works fine when I remove the label [(ngModel)]. The page also works and there is no error using (ngModel), but the one-bind does not seem to work. [ngModel] also causes the error.

Packages:

  "name": "xxxxx",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve --proxy-config proxy.conf.js",
    "build": "ng build --prod",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^5.1.0",
    "@angular/common": "^5.1.0",
    "@angular/compiler": "^5.1.0",
    "@angular/core": "^5.1.0",
    "@angular/forms": "^5.1.0",
    "@angular/http": "^5.1.0",
    "@angular/platform-browser": "^5.1.0",
    "@angular/platform-browser-dynamic": "^5.1.0",
    "@angular/router": "^5.1.0",
    "@ng-bootstrap/ng-bootstrap": "^1.0.0-beta.9",
    "@ng-select/ng-select": "^0.11.0",
    "bootstrap": "^4.0.0-beta.3",
    "core-js": "^2.4.1",
    "rxjs": "^5.5.6",
    "zone.js": "^0.8.19"
  },
  "devDependencies": {
    "@angular/cli": "1.6.4",
    "@angular/compiler-cli": "^5.1.0",
    "@angular/language-service": "^5.2.0",
    "@types/jasmine": "~2.8.3",
    "@types/jasminewd2": "~2.0.2",
    "@types/node": "~6.0.60",
    "codelyzer": "^4.0.1",
    "jasmine-core": "~2.8.0",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~2.0.0",
    "karma-chrome-launcher": "~2.2.0",
    "karma-cli": "~1.0.1",
    "karma-coverage-istanbul-reporter": "^1.2.1",
    "karma-jasmine": "~1.1.0",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~5.1.2",
    "ts-node": "~3.2.0",
    "tslint": "~5.9.1",
    "typescript": "~2.5.3"
  }
}

Project using Angular Cli. ng-select version: latest version and 0.11.0. browser: Chromium 63.0.3239.108 reproducible in demo page: NO

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:5
  • Comments:22

github_iconTop GitHub Comments

143reactions
Nekmocommented, Jan 15, 2018

Resolved including modules:

        FormsModule,
        ReactiveFormsModule,
41reactions
jbiddulphcommented, Dec 30, 2018

I’m having this issue, I added FormsModule and ReactiveFormsModule to app.module.ts and to the actual module file… I am still getting the error?!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Can't bind to 'ngModel' since it isn't a known property of 'input'
The ngModel directive declared in the FormsModule lets you bind controls in your template-driven form to properties in your data model. When you...
Read more >
Can't bind to 'ngModel' since it isn't a known property of 'input'
To fix Can't bind to 'ngModel' since it isn't a known property of 'input' error in Angular we have to import FormsModule in...
Read more >
Can't Bind to ngModel since it isn't a known property of select
You can bind dynamic data to an SELECT element in Angular using the ngFor directive. While working with this example, an unexpected error...
Read more >
Angular—Can't Bind to ngModel, Not a Known Property of input
The downside is that you have to use import statements to load the parts your component needs. The only reason that the ngModel...
Read more >
Angular error Can't bind to 'ngModel' since it isn't a ... - YouTube
Learn Angular in Mumbai offline http://stepbystepschools.net/ For more ... Can't bind to ' ngModel ' since it isn't a known property of input....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found