Skip to content

Instantly share code, notes, and snippets.

@djabif
Created April 30, 2018 00:33
Show Gist options
  • Save djabif/3efdf8f6591652cb88d025f7020668f5 to your computer and use it in GitHub Desktop.
Save djabif/3efdf8f6591652cb88d025f7020668f5 to your computer and use it in GitHub Desktop.
// 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