Disabled input in Angular2

De Basef
Revisão de 13h11min de 26 de outubro de 2016 por Admin (discussão | contribs) (Criou página com 'Suppose you have a form using Model Driven Form "myForm" and want to validate if the form is valid. The way to do this is use "[disabled]": <source lang="xml"> <form [formGro...')

(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para: navegação, pesquisa

Suppose you have a form using Model Driven Form "myForm" and want to validate if the form is valid. The way to do this is use "[disabled]":

<form [formGroup]="myForm">
    <button type="submit" [disabled]="!myForm.valid">Submit</button>
</form>

Note: the example only shows how to use [disabled]. To have a working example, you have to create a Model Driven Form and configure it with validators.