Expand my Community achievements bar.

sbudlong
sbudlong
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • With this sequence, the validation that occurs first with the Submit by Email button would happen. After completing the form, the email dialog box would appear. And last, the user would see a dialog where he/she could save the form locally. I've tried using two buttons, but when I put validation on ...

    Type

    Questions

    Views

    399

    Likes

    0

    Replies

    0
  • Is there a way to perform this sequence? If I add app.execMenuItem("SaveAs"); to an event on the Submit by Email button, the SaveAs dialog immediately comes up. I'd like to delay this until after the Email dialog appears and the user sends the form by email. At that point, I'd like to give the user ...

    Type

    Questions

    Views

    803

    Likes

    0

    Replies

    2
  • The problem seems to come up around StoreNumTxt or FileNumTxt. The Save button continues to work until I put a number in one of those fields. If I delete the value, the button will work again and show the error message. What could possibly account for this behavior? form1.#subform[8].saveFormBtn::mo...

    Type

    Questions

    Views

    384

    Likes

    0

    Replies

    0
  • In testing a form, I find that a regular button for saving the form locally doesn't work when I add validation to an event. The button will work at first, if I don't fill in any fields and click the Save button. And it will trigger the error message if I fill out the first five fields. But if I fill...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    3
  • This code works and sends a PDF, which is desirable. However, something strange happens. When I click on Submit by Email, the dialog for sending the email comes up, then the email itself. After I click Send, another email dialog comes up, and when I click that, I get an email with a CC and the attac...

    Type

    Questions

    Views

    862

    Likes

    0

    Replies

    0
  • And in a similar way, how could I change the body text of the email to include some of the fields from the form?

    Type

    Questions

    Views

    867

    Likes

    0

    Replies

    0
  • Also, is there a way to send a specific subject at runtime, maybe something like this?this.resolveNode("#event").submit.target = "mailto: somebody@somewhere.com; " + emailFromTxt.rawValue + "?subject=Request from" + firstNameTxt.rawValue + middleInitialTxt.rawValue + lastNameTxt.rawValue + "&body=Th...

    Type

    Questions

    Views

    864

    Likes

    0

    Replies

    0
  • Actually, this does work.this.resolveNode("#event").submit.target = "mailto:somebody@somewhere.com; " + emailFromTxt .rawValue + "?subject=email data&body=This is the body  text.";Is there a way to make the second URL (the emailFromTxtfield) as CC or BCC?

    Type

    Questions

    Views

    865

    Likes

    0

    Replies

    0
  • I have a form with a Submit by Email button configured in the Object palette to send the form to a specific URL. In the form, the user fills out an email address text field. Is it possible to send the user the form also? I found something close (see below). I tried to adapt this by adding script to ...

    Type

    Questions

    Views

    2.7K

    Likes

    0

    Replies

    8
  • I got it. The reason I was getting that "is not defined" error is that the TextField1needed to look like this form1.#subform[0].DropDownList1::change - (JavaScript, client)if (xfa.event.newText == "first" || xfa.event.newText == "second"){    textSubform.presence = "visible";    textSubform.TextFiel...

    Type

    Questions

    Views

    1.7K

    Likes

    0

    Replies

    0