martedì 16 aprile 2024

Angular input matInput focusin gestione del focus attivo

Nel caso che si sta gestendo un controllo di tipo input Matinput in Angular Material, e si vuole gestire il focus attivo, tramite l'evento "focusin" possiamo gestire tale evento.

Di seguito il frammento di codice.

HTML:
<input matInput
            required
           
            (focusin)="onFocusIn( $event )"

TypeScript:
 onFocusIn( _event: FocusEvent ) {

}

Nessun commento: