- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi
Thanks for you response, I will be using a drop down list, so if it is >150 it will populate the drop down box with a set list and if not it will be populated with another list.
Thanks again
Chris
Date: Mon, 23 Dec 2013 12:41:03 -0800
From: forums_noreply@adobe.com
To: chrisjoly16@hotmail.com
Subject: Bind a numeric field to text field.
Re: Bind a numeric field to text field.
created by jasotastic81 in LiveCycle Forms - View the full discussion
on the "exit" event for your numeric field:
if (this.rawValue > 150) {
rblSet1.presence = "visible";
rblSet2.presence = "hidden";
}
else {
rblSet1.presence = "hidden";
rblSet2.presence = "visible";
}
Now, I don't know what "set of choices" you're using. In my example, I went with a radio button list. The code in the if/else clauses sets the entire list to visible or hidden so that it doesn't interfere with the layout when your user changes the number.
Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5953470#5953470
Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
Start a new discussion in LiveCycle Forms at Adobe Community
For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.
Views
Replies
Total Likes