[Solved] Angular 2+, why doesn’t material want to show error message?

*Update To create a customFormControl over a control, we use parent, see an example checkPasswords(): ValidatorFn { //see that the argument is a FormControl return (control: FormControl): ValidationErrors => { //the formGroup is control.parent const group = control.parent as FormGroup; //but we must sure that is defined if (!group) return null; console.log(group.get(“password”).value); let pass = … Read more

[Solved] Any reference for Angular material 2 responsive?

There are plenty of frameworks that you can use. You can use Bootstrap, Material and Zurb Foundation which are very stable: For Material: npm install –save @angular/material @angular/cdk Also you can get help from here: https://material.angular.io/guide/getting-started For Bootstrap 3: npm install [email protected] –save For Bootstrap 4: npm install bootstrap –save If you added the Bootstrap … Read more