Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

HHud5757
HHud5757
Offline

Badges

Badges
2

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
3

Discussions

Discussions
0

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by HHud5757
Customize the badges you want to showcase on your profile
Re: Firing Two Scripts One After Another - Adobe LiveCycle 02-01-2014
Check this example for using two buttons to accomplish what you're after. Basically, your validate/lock script goes on a visible "submit" button and then fires the click event of a second button that does the actual submission.http://www.assuredynamics.com/index.php/portfolio/check-if-form-is-signed-before-emailing/

Views

546

Likes

0

Replies

0
Re: Radio Button to make other field Mandatory - Adobe LiveCycle 21-11-2013
I would recommend using checkboxes instead of radio buttons for things like this. They act a little less quirky, and it's easy to set them to uncheck the other boxes as needed.Try this script on the change event (javascript):if (this.rawValue == "1") { //if the checkbox is checked AssemblyNu-1.mandatory = "error"; //make field mandatory OtherCheckbox.rawValue = "0"; //uncheck other checkbox} else { //if the checkbox is not checked AssemblyNu-1.mandatory = ""; //field is not mandatory}

Views

448

Likes

0

Replies

0