Guest User

Untitled

a guest
Jan 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. //Other Form Controls
  2. empCode:[this.userFormDetails.userId],
  3. empName:[this.userFormDetails.name],
  4. pensionType:[''],
  5. fhName:[
  6. ()=>{
  7. return this.userFormDetails.gender=="Male"? this.userFormDetails.fatherName:this.userFormDetails.spouseName
  8. }],
  9. .
  10. //Rest of the controls
  11.  
  12. ()=>{ ( **<--addition parenthesis**
  13. return this.userFormDetails.gender=="Male"? this.userFormDetails.fatherName:this.userFormDetails.spouseName
  14. )}
  15.  
  16. fhName:[{
  17. value: ()=>{
  18. return this.userFormDetails.gender=="Male"?
  19. this.userFormDetails.fatherName:this.userFormDetails.spouseName
  20. },
  21. disabled:false
  22. }
  23. ]
Add Comment
Please, Sign In to add comment