Answers for "angular 10 onchange event"

0

angular input change event

<input type="text" [ngModel]="mymodel" (ngModelChange)="valuechange($event)" />
{{mymodel}}

valuechange(newValue) {
  mymodel = newValue;
  console.log(newValue)
}
Posted by: Guest on April-29-2021
3

ngchange angular 8

import { Component } from '@angular/core';

@Component({
  selector: 'my-app',
  template: `
    <input type="number" [ngModel]="percent" (ngModelChange)="onPercentChange($event)" />
  `,
  styleUrls: [ './app.component.css' ]
})
export class AppComponent  {
  percent = 20;

  onPercentChange(percent: number) {
    console.log('here');  

    this.percent = percent;
  }
}
Posted by: Guest on May-04-2020
0

angular onChange onChanges SimpleChanges

export class MyClassName implements OnInit,OnChanges {
 @Input() documents: Document[] = [];
.....
ngOnChanges(changes: SimpleChanges){
    console.log("changes ", changes)
    if(changes.documents){
      console.log("changes2 ", changes)
    }
  }
Posted by: Guest on September-14-2021

Browse Popular Code Answers by Language