Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

262
Vistas
How to force an update to a template when a property doesn't change in angular 4

In my component which has a template like so

template: '<input type="text" value="{{formattedValue}}">',

When certain bad inputs are entered the internal formattedValue property doesn't change, but I then want the UI to then update to show the last correct value.

For example, if the components this.formattedValue is 1,000 and the user update the input to have the text 1,000x I then want to the input to be 1,000 again. Currently this doesn't happen. Of course I can update the DOM with the Dom api in the function but I would prefer to use the template.

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

template: '<input type="text" [ngValue]="formattedValue" (ngValueChange)="checkValue($event)">',


formattedValue:string = '';
constructor(private cdRef:ChangeDetectorRef) {}

checkValue(event) { 
  if(event == /* invalid */) {
    this.cdRef.detectChanges();
  } else {
    this.formattedValue = event;
  }
}
over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda