Murugan
Results
2
comments of
Murugan
Hi, Can anyone know how to use the max-length and min-length?
Try this. **HTML** ``` Only 5000 characters allowed. ``` **ts** ``` InitialSetup(){ this.emailTemplateForm = this._fb.group({ .... description: new FormControl("",[Validators.required, this.editorMaxLength(5000)]), ........ }) } editorMaxLength(maxlength): ValidatorFn { return (control: AbstractControl): {...