Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
if (this.parent.instanceManager.count = 1){
this.rawValue = " Yellow";
} else{
this.rawValue = "Pink";
}
i use this script in a dynamic form
but always same value appeared in all new addinstance
plz help whats wrong in script.
Your comparison operator is wrong. It has to be either == or === but not =.
Try this.
if (this.parent.instanceManager.count == 1){ this.rawValue = " Yellow";} else{this.rawValue = "Pink";}
if (this.parent.instanceManager.count == 1){
Views
Likes
Replies