Problem with field validation after submit.

Ask a Question related to Adobe Acrobat Windows, Design and Development.

  1. #1

    Default Problem with field validation after submit.

    I field validation(required)set for the Name field. When a user does forget to fill in the Name field and proceeds to fill in the rest of the form and clicks Submit we get a dialog box about needing to fill out the Name field. Here's where my problems starts when the user goes back to fill in the Name field all of the other data on the form has disappered so they have to re-enter everything again. Is there a way to save the information on the form until all the required info. has been entered?
    Michael_Pennant@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. form field validation broken
      Hi, Real quick I know that this was supposed to be addressed in update #3 for MX 6.1, but I'm running MX 7 which should have had this issue...
    2. Text Field validation
      I am currently using Yaromat for my form validation, however there is one thing I need to do that Yaromat doesn't. I want to be able to set up...
    3. copy and paste form RTF document into field in asp form cause it to bypass field length and javascript validation - how to overcome?
      I have a web form with several fields. If I copy & paste from a RTF document into a field, the javascript validation and field length are bypassed...
    4. Form verification and creating a hidden field on submit
      Hi All, I have a form that has a number of radio boxes and input fields for the user to select from. The form is part of a survey. The problem is...
    5. form field submit order
      Hello, Not sure if this is an asp or dreamweaver or a.n.other editor problem... I have a form with stacks of fields. This is submitted to a...
  3. #2

    Default Re: Problem with field validation after submit.

    It appears as though the form is being reset. You'll have to find out why that's happening. It could be a Reset Form action on a page's Page Open event, or somewhere else. It doesn't sound like it's related to the form submission.

    George
    George_Johnson@adobeforums.com Guest

  4. #3

    Default Re: Problem with field validation after submit.

    I do have Reset Form function included in the setup right after Submit Form. Would I have to put something else in there, because I do want to reset the form for the next user to fill out.
    Michael_Pennant@adobeforums.com Guest

  5. #4

    Default Re: Problem with field validation after submit.

    Make the reset contingent on the form passing its validation.
    W_T_Allen@adobeforums.com Guest

  6. #5

    Default Re: Problem with field validation after submit.

    I have no idea how to do that, any help would be greatly appreciated. Thanks in advance.
    Michael_Pennant@adobeforums.com Guest

  7. #6

    Default Re: Problem with field validation after submit.

    To do what WT suggested you'll need to use JavaScript. I'd suggest using JavaScript to perform your own form validation rather than rely on the "required" field property. You'd also use the submitForm JavaScript method to submit the form if appropriate.

    I would advise against resetting the form immediately after it is submitted, since the user may want to review, print, and/or save. It's better to reset when the form is opened and provide a Reset button if the user needs to start with a fresh form.

    George
    George_Johnson@adobeforums.com Guest

  8. #7

    Default Re: Problem with field validation after submit.



    I would advise against resetting the form immediately after it is submitted




    Unless, of course, public computers are used to fill out the form. Resetting the form upon the closure of the page might do the trick.
    xile@adobeforums.com Guest

  9. #8

    Default Re: Problem with field validation after submit.



    Resetting the form upon the closure of the page might do the trick.




    If you can figure out how to reliably do that, let us know. Note that the Page Close or Document Will Close events do not get triggered when a PDF is viewed inside a web browser.

    George
    George_Johnson@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139