angular2-form-validation-example
angular2-form-validation-example copied to clipboard
Angular 2 Form Validation Example
Results
2
angular2-form-validation-example issues
Sort by
recently updated
recently updated
newest added
Got the follow error message when I tried: `` > TypeError: Cannot read property 'validator' of undefined in [form in HomePage@7:8] Any advice? Thanks
``` export default function NameTakenValidator(control:Control):Promise { let q = new Promise((resolve, reject) => { setTimeout(() => { if (control.value === 'Sean') { resolve({"taken": true}); } else { resolve(null); } },...