I am trying to get the script below to verify the "ReleasedIntoSystemBy" field (drop-down with email address values) is not blank. What have I got wrong?// Declare the variablevar vEmail; var vSubject = "New Work Order/Project Authorization"var vBody = "Instructions:"// Check that the email field is...
With much help from here in the past (thank you!), we've been using a form with a custom submit button, and I'm needing to add a cc. I did add a var vCC = first.last@email.com, but no luck in placing it within this event properly. What is the right way to add an additional cc? Thank you! event...
I am trying to make this where if this checkbox is checked then it checks to see if SSN has a correct number in it or it returns an error.This is what i have in there now.if (xfa.resolveNode("this").rawValue == "1"){ SSN.mandatory = "error"; app.alert("Please fill in the Dependent SSN portio...
Hello,My form doesn't have an actual submit button, so the built-in "required" field function isn't of any use to me unless I can programmatically check them. So if I make 25 fields on page 1 required, I don't want to have a long if/then statement checking if each one has a null value.Is there a wa...
I have a drop down selection list and items can be added from the drop down list into a textbox as multiple items. (this all work fine)When I email the form as PDF then all the other field values is saved except the values entered into the textbox selected from the dropdownlist.How can I get these v...
Hi AllI am using Adobe workbench Lifecycle 9.5. When I invoke the process either through client or Through Webservice I am getting timeout after 10 mins. Somebody pls suggest me how to get out of the issue.Rajasekaran TPls reply if more information required on my process
Hello, first post here. Hope someone can help me as my XML knowledge sucks and I need some coding help.I am creating a form for "user" creation/change process.I have a field "DropDownWindowsUser" with values "NEW, CHANGE, and DELETE"When you select "DropDownWindowsUser" = "NEW" , there is two checkb...
I need multiple subforms to appear based on what is selected from a dropdown. I have 7 specified item values, if the person selects Item 1, I would like Item 1 subform to appear.if the person selects Item 2 or Item 3 as well. I would like for those subforms to appear as well.How do I go about doing ...
When trying to select a bit of text that is in a Text object (as opposed to a Text Field) on a form, the cursor highlights multiple other text objects on the page. I'll try to replicate this below:Is this just the nature of pdf documents, or is it something that can be prevented.I've made sure to g...
HiI have been working on trying to customise the email submit button to custom entry email address, cc, bcc, subject etc etcYou can use the pre-submit function on the email buttonI am using the following code: this.event__click.resolveNode("#submit").format = formatlist.rawValue;this.event__click.re...