- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
I don't use Workbench, however, the script your provided can't work, because it uses the wrong operator for comparing A with B.
Try
Subform.presence = A === B ? "hidden" : "visible";or
if (A === B) {
Subform.presence = "hidden";
} else {
Subform.presence = "visible";
}
Views
Replies
0 Likes
Total Likes