


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.
Views
Replies
Sign in to like this content
Total Likes
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";
}
Views
Replies
Sign in to like this content
Total Likes