Re: [AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2019-04-04 Thread zala bhavesh
Thanks sir, solved error On Thu, Apr 4, 2019 at 12:17 AM Sander Elias wrote: > Make sure you added them to the module that your component is in. > > -- > You received this message because you are subscribed to the Google Groups > "Angular and AngularJS discussion" group. > To unsubscribe from

[AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2019-04-04 Thread Sander Elias
Make sure you added them to the module that your component is in. -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2019-04-04 Thread zalabhavesh4089
I am getting same error please help me. On Wednesday, August 10, 2016 at 9:48:37 AM UTC-7, Eduardo Cavalcanti wrote: > > Has anyone else received an error like this after upgrading to RC5? It > works fine under RC4. > > It happens during the template compilation phase. A segment of the >

Re: [AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2019-04-04 Thread zalabhavesh4089
Hello sir, I had already added formModule and ReactiveFormsModule but i getting same error. On Wednesday, August 10, 2016 at 12:54:51 PM UTC-7, Eduardo Cavalcanti wrote: > > Thank you Lucas, > > It was necessary to to mention > ``` > import { FormsModule } from '@angular/forms'; > ``` > and

Re: [AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2016-08-11 Thread Eduardo Cavalcanti
Hi Nitin, Thank you. Angular 2 docs (https://angular.io/docs/ts/latest/) are updated throughout with NgModule use. There is also an specific RC4 to RC5 migration explanation in https://angular.io/docs/ts/latest/cookbook/rc4-to-rc5.html. This RC5 announcement article is also enlightening

Re: [AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2016-08-11 Thread Nitin Kumar
Found the solution while Googling the error, I just tried this solution & it is working fine. I hope Eduardo did the same changes. Source : Can’t bind to ‘ngModel’ since it isn’t a known property of ‘input’ On

Re: [AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2016-08-11 Thread Nitin Kumar
Hi, could you please post updated code as I am unable to get how did you remove this error? Thanks On Thursday, August 11, 2016 at 1:24:51 AM UTC+5:30, Eduardo Cavalcanti wrote: > > Thank you Lucas, > > It was necessary to to mention > ``` > import { FormsModule } from '@angular/forms'; >

Re: [AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2016-08-10 Thread Eduardo Cavalcanti
Thank you Lucas, It was necessary to to mention ``` import { FormsModule } from '@angular/forms'; ``` and also to incorporate the new @NgModule syntax. -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop

Re: [AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2016-08-10 Thread 'Lucas Lacroix' via AngularJS
​I believe you're missing the directive for NgModel on your component.​ On Wed, Aug 10, 2016 at 2:41 PM, Eduardo Cavalcanti < eduardo.m.cavalca...@uol.com.br> wrote: > This is the error message: > > "Template parse errors: Can't bind to 'ngModel' since it isn't a known > property of 'input'. ("

[AngularJS] Re: Can't bind to 'ngModel' since it isn't a known property of 'input'

2016-08-10 Thread Eduardo Cavalcanti
This is the error message: "Template parse errors: Can't bind to 'ngModel' since it isn't a known property of 'input'. (" ][(ngModel)]="newCustGroupName" (keyup.enter)="approveNewCustomerGroup()" > https://groups.google.com/group/angular. For more options, visit