Si te encuentras con alguna parte que no comprendes puedes comentarlo y trataremos de ayudarte rápidamente.
Ejemplo: directiva de solo números angulares
import Directive, ElementRef, HostListener, Input from'@angular/core';import NgControl from'@angular/forms';
@Directive(
selector:'input[type=number], input[numbersOnly]')exportclassNumbersOnlyInputDirectiveconstructor(private elRef: ElementRef)
@HostListener('input',['$event'])onInputChange(event)const initalValue =this.elRef.nativeElement.value;this.elRef.nativeElement.value = initalValue.replace(/[^0-9]*/g,'');if( initalValue !==this.elRef.nativeElement.value)
event.stopPropagation();
Tienes la opción de reafirmar nuestra misión dejando un comentario o puntuándolo te lo agradecemos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)