Guest User

Untitled

a guest
Jun 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // part of a fixed asset
  2. this.fb.group({
  3. //...
  4. amount: new FormControl(),
  5. purchaseDate: new FormControl('', Validation.dateRange),
  6. //...
  7. refurbishments: this.fb.array([
  8. refurbAttribute: new FormControl('', Validation.required)
  9. ])
  10. });
Add Comment
Please, Sign In to add comment