Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

263
Visualizações
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 Respostas
Responde à pergunta

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 Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda