- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
In older versions scripting is the only option. You would do something like this if you are using JavaScript:
switch(xfa.event.newText) {
case 'A - Approved':
form1.Page1.2nd_Title.presence = "visible";
form1.Page1.2nd_Signature.presence = "visible";
break;
default:
form1.Page1.2nd_Title.presence = "hidden";
form1.Page1.2nd_Signature.presence = "hidden";
break;
}
Of course, you would need to add/change your field names and what action you want to happen: visible/hidden etc.
Debbie
"Life is half spent before we know what it is."
George Herbert