Created
April 30, 2018 00:33
-
-
Save djabif/3efdf8f6591652cb88d025f7020668f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// user details form validations | |
this.userDetailsForm = this.fb.group({ | |
fullname: ['Homero Simpson', Validators.required ], | |
bio: ["Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s", Validators.maxLength(256)], | |
birthday: ['', Validators.required], | |
gender: new FormControl(this.genders[0], Validators.required), | |
country_phone: this.country_phone_group | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment