form-example
form-example copied to clipboard
Template-driven ngModel forms blog companion code
This is awesome, but I can't use this anywhere as there's no license specified - it would be great if you could specify how we can use/modify this example. In...
In validate.ts: ``` return asyncValidator(control).map(v => { const secondary = synchronousValid(); if (secondary || v) { // compose async and sync validator results return Object.assign({}, secondary, v); } }); ```...
- Added support for reactive forms with validation and example. - Upgraded to Angular CLI 1.2.0. - Fixed Hexadecimal validator registration and added support for reactive form validation usage. -...