- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
I have an object that will increase by one with an Add Instance button.
I have a check box that will toggle hidden/visible.
Only the first instance can be hidden/visible... why not the rest?
check box / click:
if(this.rawValue == "1")
{
form1.P1.wrap.textfield2[*].presence = "hidden";
}
I tried to loop it:
if(this.rawValue == "1")
{
for (var i = 0; i < xfa.host.numPages; i++){var oSubform = xfa.resolveNode("form1.P1[" + i + "]");oSubform.wrap.textfield2.presence = "hidden";}
}
Help!
Thank you in advance
Solved! Go to Solution.
Views
Replies
0 Likes
Total Likes