Guest User

Untitled

a guest
Oct 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. getColumnValueg(): Observable<any>
  2. { console.log("service",this.colValueg);
  3. return (this.colValueg);
  4. }
  5.  
  6. ngOnInit()
  7. {
  8. // perform the task of sending and receiving value.
  9. console.log("inint form-lib component",this.UserFormArray);
  10.  
  11. this.UserFormArray = this.service.getFormDetails();
  12.  
  13. this.service.getColumnValueg().subscribe(data => this.g1 = data);
  14. this.service.getColumnValueg().subscribe(data => this.lg1 = data);
  15. this.service.getColumnValueg().subscribe(data => this.md1 = data);
  16.  
  17. console.log('userformarray',this.UserFormArray);
  18. console.log(this.g1,this.lg1,this.md1);
  19. }
Add Comment
Please, Sign In to add comment