Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

141
Views
Prevent sending data to model if field in invalid in Angular 2

I Have a template-driven form with two-way data binding and validator

<input [(ngModel)]="myObj.name" someValidator>

How can I prevent sendind data from input do model if there are some validation errors? In my model I want to have only correct data from form.

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You can attach a keyup function to the input and do whatever you wish to achieve.

<input [ngModel]="myObj.name" (keyup)="onChangeCheck($event.target.value)"> 

 export class ParentCmp {

   onChangeCheck(val){
      console.log(val);
        if( condition){
            this.myobj.name = value;
         }else{
             // do nothing
         }
    }
}
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!