Submit Not Working

Users of the form I created on Forms Central say that after they fill out the PDF on their computer and click Submit, nothing happens. Any thoughts?

The forms work for some people and not others. I’ve tested them and they work for me. Originally we did have a problem with people using other software so added a note on our form that Adobe Reader/Acrobat was required to fill out the form and included a link to download Reader. Some people are still reporting issues.
Thanks for your input.
Karen

Similar Messages

  • ID CS6 Form Submit not working in Adobe Reader

    Hardware = Mac 8Core OSX 10.7.5 | Software = InDesign CS6 vs 8.01
    I'm having ongoing frustrations with the ID Cs6 Forms. The interactive form Submit button works on my machine's Adobe Acrobat Pro, but not on machines using Adobe Reader (I've given up on it working in Apple Preview). It has worked on one other mac machine, again it was Adobe Acrobat pro 9.1.1. Any advice will be appreciated. Thanks in advance: Justin

    You need to enable that in Acrobat Pro.
    Bob

  • PDF Submit not working in Chrome & Safari

    I have a PDF with form fields added as well as a submit button, The action on the submit button exports all fields to a page on the server as HTML. This works fine in Firefox and IE but does not work in Chrome or Safari. Is there any known workaround to this?

    The PDF is imbedded in a web page - they are forced to open in a browser. There they are required to fill in the forms fields and submit. Here is an example:  https://www.benefitfront.com/Applications/ABCCompany_Anthem_Medical_23_BZUFP.pdf

  • HTTP Button Submit not working in FireFox

    I am using Adobe Life Cycle Designer to make a Form.
    I have a Problem that the HTTP Submit Button is not working in FireFox. It works with IE but not with FireFox. I have also checked this with Button Submit Control.Please Help me.

    You are in the wrong Forum. You need to post your issue in the LiveCycle forum.

  • Form submit not working even with usage rights enabled

    Hi everyone,
    I created a form in Acrobat 7 professional (mac version), then used Acrobat 8 (windows version) to enable usage rights.
    I have the following javascript code attached to a submit button:
    this.mailForm(true, "[email protected]", "", "", "RSVP", "Yes! Please register me.");
    When I test the form in the full version of Acrobat by pressing the submit button, it automatically launches my email program, attaches the form's .fdf file and addresses the email, ie. just as the code directs. The problem is that when I try and test in either Acrobat 7 or 8 Reader, it won't work, ie. I press the submit button but the email program doesn't open etc. As I said, I've already enabled usage rights in Acrobat 8 so I don't know why it's not working.
    Can someone tell me what might be going wrong?
    Appreciate any help offered.

    pjones, Tembowa is correct.
    if you look up the mailForm in the JavaScript reference guide, you see it's marked with the letter 'F', meaning that the PDF requires Form rights in order for this method to work in Reader.
    Now as you rightly say you can use Acrobat 8 pro to extend a PDF with usage or Save rights. (These will be marked by the letter 'S' in the JS reference guide.)
    In short when you enable a PDF in Acrobat pro, you 'only' assign Save rights. This is not sufficient for the mailForm method to function in the free Reader.
    For mailForm to work in the reader you need to assign a PDF with form rights, which can only be done using LC Reader extensions.
    Hope this clarifies things.

  • LOV filter - Auto Submit not working after the value is made to VS.filter

    JDeveloper 11.1.1.4.0
    I have cascading LOV filters for a table with fields id, deptid, projectName. The filters are for deptid and projectName. When I select a deptid, the projectNames belonging to that deptid should be populated. I have set Auto submit for deptid filter and partial trigger for project Name. So if I select a deptid and when I navigate to Project Name filter I get the list of project Names in the Project LOV filter.This worked fine as long as I didnt change the value for LOV to Vs.filtercriteria.deptid. Once I changed it the LOV filter for Project Names only got refreshed once I hit ENTER key after changing the value of Deptid. But I have to keep the value for LOV to Vs.filtercriteria.deptid. Other wise the records in the table after applying the filter values didnt function properly. I dont know whether the AutoSubmit does not work when the value is changed to Vs.filtercriteria.deptid

    duplicate post.
    Frank

  • CFWINDOW and a form submit not working as expected

    Hello, everyone.
    I currently have a page that allows certain users the ability to edit content directly, without having to log on to a CMS; the user can click an edit button if they have permission which will open a CFWINDOW that contains the pre-populated form for editing.
    If I open the form directly in a browser (IE7 on WinXP SP3) and click the submit button, all is well.
    However, when I use the EDIT link and open the form in the CFWINDOW, clicking submit will post all form data EXCEPT the input="file"; upon submit, I get an error saying that the field for file doesn't exist.
    Any idea what could be causing this?
    Thanks,
    ^_^
    PS.  If required, I can post some code; but I cannot provide a link as this is on a private internal network that the public does not have access to.

    Here's the code I have, thus far.
    Main webpage (this calls the CFWINDOW):
    <cfoutput>
         <div class="more-info">
         [<a href="javascript:void(0);" onclick="windowModal('Edit_NU','#trim(url.thisNav)#',500,700,'Edit News & Updates - #ucase(url.thisNav)#','edit_nu.cfm?thisNav=#trim(url.thisNav)#',true)">edit</a>]
         </div>
    </cfoutput>
    windowModal function:
    function windowModal(win_name,TID,h,w,t,f,m){
         var windowName = typeof win_name === 'undefined' ? 'CFWindowName' : win_name;
         var thisID = typeof TID === 'undefined' ? 0 : TID;
         var thisHeight = typeof h === 'undefined' ? 400 : h;
         var thisWidth = typeof w === 'undefined' ? 700 : w;
         var thisTitle = typeof t === 'undefined' ? "_" : t;
         var thisDocument = typeof f === 'undefined' ? "faq.cfm?faqID="+thisID+"" : f;
         var thisModal = typeof m === 'undefined' ? true : m;
         ColdFusion.Window.create(windowName,
              thisTitle,
              thisDocument,
              {width:thisWidth,height:thisHeight,center:true,resizable:true,modal:thisModal,draggable:thisModal});
         //ColdFusion 9 bug fix
         ob = ColdFusion.Window.getWindowObject(windowName);
        ob.center();
         ob.body.applyStyles("background-color:#fff");
         ColdFusion.Window.onHide(windowName,destroyWindow);
    function destroyWindow(name){
         ColdFusion.Window.destroy(name,true);     
    edit_nu.cfm
    <cfset client.thisNav = trim(url.thisNav) />
    <iframe src="edit_nu2.cfm" name="NU_update" width="100%"
         marginwidth="0" height="100%" marginheight="0" align="top" scrolling="No" frameborder="0" hspace="0" vspace="0">
    Your browser does not support iFrame and cannot be used for this action.
    </iframe>
    edit_nu2.cfm:
    <cfoutput query="resultset">
    <cfform action="edit_nu2.cfm?nuid=#resultset.NU_ID#&amp;thisNav=#trim(url.thisNav)#" method="post" enctype="multipart/form-data" preloader="no" format="html" onsubmit="return getFileName();">
    <cfswitch expression="#val(resultset.active_ind)#"><cfcase value="1"><cfset variables.yesChecked = 1><cfset variables.noChecked = 0></cfcase><cfcase value="0"><cfset variables.yesChecked = 0><cfset variables.noChecked = 1></cfcase></cfswitch>
    <table width="100%">
         <tr>
              <td style="width:25%; text-align:right; vertical-align:center;">Page & ID: </td>
              <td style="width:75%; text-align:left; vertical-align:top;">#client.thisNav# - #resultset.NU_ID#      Active:<cfinput type="radio" name="active_ind" value="1" checked="#val(variables.yesChecked)#" /> Y <cfinput type="radio" name="active_ind" value="0" checked="#val(variables.noChecked)#" /> N</td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Large HL: </td>
              <td style="text-align:left; vertical-align:top;"><cfinput type="text" name="large_headline" visible="true" style="width:98%;" value="#resultset.NU_large_headline#" maxlength="100" /></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Small HL: </td>
              <td style="text-align:left; vertical-align:top;"><cfinput type="text" name="small_headline" visible="true" style="width:98%;" value="#resultset.NU_small_headline#" maxlength="50" /></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top; height:130px;">Image: </td>
              <td style="text-align:left; vertical-align:top;"><cfif isDefined("resultset.NU_large_image") AND len(resultset.NU_large_image) gt 0><cfset variables.imageData = resultset.NU_large_image /><cfset variables.thisWidth = 300 /><cfimage action="writeToBrowser" source="#ToBinary(variables.imageData)#" width="200" /><cfelse>None</cfif></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Upload/Replace: </td>
              <td style="text-align:left; vertical-align:top;"> </td>
         </tr>
         <tr>
              <td style="text-align:center; vertical-align:top;" colspan="2"><input type="file" name="NU_image" style="width:95%;" /><br /><input type="hidden" name="NU_image_name" /></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Article: </td>
              <td style="text-align:left; vertical-align:top;"> </td>
         </tr>
         <tr>
              <td style="text-align:center; vertical-align:top;" colspan="2"><cftextarea richtext="yes" name="article_content" tooltip="Content" value="#resultset.NU_article_content#" style="width:97%;" height="350"></cftextarea></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Inserted: </td>
              <td style="text-align:left; vertical-align:top; font-weight:bold;">#resultset.NU_inserted_by# on #DateFormat(resultset.NU_inserted_dttm,'mm-dd-yyyy')# #TimeFormat(resultset.NU_inserted_dttm,'hh:mm tt')# </td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Last Updated: </td>
              <td style="text-align:left; vertical-align:top; font-weight:bold;">#resultset.NU_updated_by# on #DateFormat(resultset.NU_updated_dttm,'mm-dd-yyyy')# #TimeFormat(resultset.NU_updated_dttm,'hh:mm tt')# </td>
         </tr>
         <tr>
              <td colspan="2" height="*" style="text-align:center; vertical-align:top;"><cfinput type="submit" name="submitBtn" value="Update"></td>
         </tr>
    </table>
    </cfform>
    </cfoutput>
    I've got the form inside an iFrame, already.  If I open edit_nu2.cfm directly in a browser, it works with no problem.  But opening it in the JS created CFWINDOW prevents the contents of the input type="file" from being recognized.
    ^_^

  • Quiz - Submit Not Working

    I have Captivate v1.01.1418. I have created several quizzes.
    When created the quizzes worked perfectly. I'm getting ready to
    publish to Breeze and reviewing the quizzes one last time and now
    the Submit button will not allow the user to move to the next
    slide. If the user selects the Next button, they can continue but
    the answer is not registered.
    I have Quiz Manager enabled to output to Breeze. I'm
    reporting interactions and scores. I'm allowing them to move
    backward, review quiz and score, and show progress. No default
    message is set. I'm allowing the user one to go to next slide if
    passing grade and allowing one attempt if failing grade and going
    to next slide. This is all under Quiz Manager.
    My quizzes are single answer, most multiple choice. There are
    some matching or Yes/No. If correct, I have them Go to next slide.
    If wrong answer, I'm allowing three attempts and Go to next slide.
    I have all buttons displaying, Clear, Back, Next and Submit. My
    Objective ID for each question is the same. My Interaction ID is
    unique for each slide.
    I'm in desparate need of assistance. I have created multiple
    quizzes that contain a total of 285 questions. At time of creation,
    each quiz was working properly. Please help.
    Thank you,
    Joan

    For others who may not know, Adobe support desk assisted and
    advised that since I had 3 attempts per question, the user is
    unable to advance to the next slide until they either answered the
    question correctly or made 3 attempts. There is not a way to allow
    them to submit their answer, go back to review to modify their
    answer before ending the quiz.

  • Submit not working from iphone or ipad

    I get an error that says "Submission Failed" when I hit the submit button on my form. I'm using Adobe Reader to open a file from email, so I know it isn't corrupted in any way by apple's native viewer.

    Update : There is a bug in the Adobe Reader Mobile application right now. It doesn't submit dropdown fields correctly when there is a comma in the selected choice. The temporary solution right now is to not use comma in the choices for dropdown.
    This issue is only in the mobile version of Reader (it works fine on the desktop app).
    The mobile team has been notified about this bug and I will update this post when it is fixed.
    Gen

  • CommandButton Partial submit not working within table

    I have two buttons that basically update a table I have printed out. The code is:
    <h:outputText value="FinCen Case Number"/>               
    <h:panelGrid columns="3">
    <af:inputText value="#{caseCommonInfoAction.finCenToAdd}" partialTriggers="addFinCenButton"/>
    <af:commandButton text="Add >>>" id="addFinCenButton" partialSubmit="true" action="#{caseCommonInfoAction.processSaveNewFinCenNumber}"/>
    <af:table var="finCenCaseNumber" banding="column"               value="#{caseCommonInfoAction.finCenCaseList}" partialTriggers="addFinCenButton deleteFinCenButton">
    <af:column>
    <h:outputText value="#{finCenCaseNumber.fincenCaseNumber}"/>
    </af:column>
    <af:column>
    <af:commandButton text="Delete" id="deleteFinCenButton" partialSubmit="true" action="#{caseCommonInfoAction.processDeleteFinCenNumber}">
    <f:param name="finCenToDelete" value="#{finCenCaseNumber.fincenCaseNumber}"/>
    </af:commandButton>
    </af:column>                                                  
    </af:table>
    </h:panelGrid>
    I apologize for the formatting, but copying over as well as hard coding the spaces still makes this forum ignore them. My real problem is that the table does not update when I press the "Delete" button. I did, however, tell the table to use deleteButton's id in partialTriggers.
    At first I thought partialTriggers="addFinCenButton deleteFinCenButton"> was incorrect, so I changed it to partialTriggers="deleteFinCenButton"> and it still doesn't work. The actions I have listed are working correctly (I can hit a save button I have and then refresh the page and the item I wanted to delete is actually deleted).
    Anyone have any thoughts?

    User,
    I think this is a common problem, probably a bug. It works fine if you manually enque the appropriate partial submit stuff.
    See this thread: Re: ADF Faces: PPR and Dialog framework in particular Ric Smith's reply. Poke around on Ric's blog for some code like this:
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
            afContext.addPartialTarget(handler.getTable1());
            afContext.partialUpdateNotify(commandButton11);hope this helps,
    John

  • Select lists - remember values after submit not working in IE7

    I have two dynamic select lists that are populated using .csv
    files.
    On submit, a set of results is returned based on the two
    options that were chosen.
    In IE7 when the results are returned the select lists default
    back to the last option in the select list. I would like it to
    default to what ever option was just chosen.
    I'm using the code below and it works as I would like it to
    in both Firefox and Safari, but just defaults to the last option in
    the list for IE7.
    The variable "actualLitType" is pulled from the URL and
    should be part of the id of the selected option.
    Any ideas why it doesn't work like I would like it to in IE7?
    Thanks in advance,
    Jesse

    I posted this in another forum and received an answer that
    fixed the issue. See the link below for more information:
    http://www.dynamicdrive.com/forums/showthread.php?t=35473

  • Onclick submit not working

    Hi there,
    I have a form with a check box and a submit button on it. The form button on submit has an action associated with it so that it calles the backing bean and executes edits etc. I'd like to duplicate this functionality on a check box. Basically onclick="do the same thing as the submit button". So where the Submit button has "#{BackingBean.Action}" the checkbox onclick="this.form.submit" does essentially nothing. How do I duplicate the action on the submit button from the check box?
    Thanks for the help!

    I guess, it should work; instead of html:submit, try with button.

  • Apex_plsql_job.submit not working

    Hi All,
    We are using apex_plsql_job.submit for the background job. I face no issue until the database is refreshed. Now when i submit any job which uses this function is not submitting at all.
    I checked the APEX_PLSQL_JOB.JOBS_ARE_ENABLED and it is enabled .
    Am not sure whether the recent refresh is causing the issue, can anyone please help on this?
    Thanks in advance.
    I am using oracle apex 4.0
    Thanks
    Raj

    RajEndiran wrote:
    Hi All,
    We are using apex_plsql_job.submit for the background job. I face no issue until the database is refreshed. Now when i submit any job which uses this function is not submitting at all.
    I checked the APEX_PLSQL_JOB.JOBS_ARE_ENABLED and it is enabled .
    Am not sure whether the recent refresh is causing the issue, can anyone please help on this?
    Thanks in advance.
    I am using oracle apex 4.0
    Thanks
    RajHell Raj,
    What do you mean when you say "database is refreshed"?
    BTW have you checked following view to see the status of your job?
    select * from APEX_PLSQL_JOBSRegards,
    Hari

  • Submit not working as expected

    i am calling a report (rep2) which has LDB,with selection parameters as table.
    i am calling this frm a report (rep1) using a loop.
    basicaly rep2 is to be called multiple times with different sets of selection parameters from rep1.
    but becasue of similar declarations of varioables in rep1 and rep2 ,rep2 is not generating list as per its selections..
    how to sovle?

    Hi,
    how ur using submit statements...
    you use like this to pass ur values to rep2 selection-screen parameters.
    LOOP AT ITAB.
    SUBMIT rep2 TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                              SPOOL PARAMETERS <spool_par_name>
                              WITH PNPPERNR-LOW EQ ITAB-PERNR
                              AND RETURN.
    ENDLOOP.
    Here i specified only one parameter of rep2 i.e PNPPERNR-LOW.
    Like this how many parameters are exists on selection screen of rep2, those and all you pass the vales which u need to pass.

  • Submit not working on Google Chrome OS

    My forms (built with XI Pro) will not submit on Google Chrome OS.  Is are a list of other browser/operating systems that are going to give me a problem and are there any fixes.
    Thanks

    I don't think you can reasonably expect Adobe to be the least interested in non-Adobe products. The job of any software company is to shift their own products, and that includes the free Reader. Indeed, the need to use Reader is considered a positive, desirable, feature I imagine, at least by marketing. Lack of platform support is another issue, but again, not one they will be very interested in. They hastened to drop support for Windows Vista, Unix and Linux, so a minority tablet is hardly going to interest them.
    Consider Microsoft's Word format. Some apps and devices read Word files, and do a bad job of it. Does this diminish Microsoft Word? Should they mention it? I think not.
    But, all that said, from the point of view of people intending to use PDFs for forms (rather than content delivery for display and print), the game has changed utterly and ever more rapidly in the last 2 years. One used to be able to say "Adobe Reader needed" and know it was more or less right, that there were a few rivals, but nothing widespread, and easy enough to tell people to use Reader. But what has happened is an explosion of non-Adobe PDF rivals, now so widespread that people just expect to use PDFs - complete victory for content delivery. But these rivals often interest themselves little in forms, leaving the user confused.
    Consider the choices now. In browsers, Chrome and FireFox. In systems, Mac OS (Preview) and Windows 8 (Microsoft Reader). On tablets (iOS, Android and others) a built in PDF reader. Worse, in many cases, EVEN IF the user follows instructions to get Adobe Reader the existing app continues to win, by design. For instance on iOS you have to first open a PDF in the Apple app, and only then can you choose to open it in Adobe Reader - why would the user bother unless they are very motivated.
    This has changed the position of PDF forms utterly, and for the worse. Still a good choice in closed systems (where someone can dictate hardware and software), but an increasingly questionable choice in the broader environment. To anyone considering PDF forms, I have to ask them - what is wrong with web forms? Often they have just decided (based on marketing and other perceptions) that PDF forms will be "easier". A key reason is that it seems like emailing the forms is going to be good, but this has never been more than a toy for testing. (After all, HTML can email forms too, but nobody does). I'm sure nobody dealing in medical stuff would consider emailing for a second, but it is certainly what 90% believe they can build a business solution on. So, as in all cases, it comes down to an experienced programmer producing a server solution.

Maybe you are looking for

  • Clicking "Edit PDF form" stops Adobe Acrobat Pro 11 from working. [FIXED]

    As the title says, whenever I click "Edit PDF form" in Acrobat Pro 11, it displays the message "Adobe Acrobat has stopped working" and then when I click OK it closes. It is a fresh install.  I tried reinstalling, by removing it first, i tried a repai

  • FTP OS issue

    Hello All, I am executing a OS command on my receiver file adapter. But in the RWB channel audit its not showing any error. But the message was successful. Can some one tell me how to find the error and I already visited the blog /people/michal.krawc

  • Firefox mouse gestures suddenly stopped working.

    My back or forward page now only see to reload the page instead moving back or forward a page. This was working fine seemingly no changes. The other odd thing is that when browsing a site like Reddit, once the back gesture is done and it is within th

  • MAXL Warning Messages

    Hi All, Issue is regarding the MAXL limit when we have warnings during Data Load... In the CFG file i have DATAERRORLIMIT set as 65000 and i have rejections in the dataload when using Maxl Import command and the errors were directed to one logfile. A

  • I have had some 16mm film converted to digital format. Photoshop displays it ok. Then when I save

    I have had some 16mm film converted to digital format avi 190 by 1080 pixels, 72 pixels/inch. Photoshop displays it ok. Then when I save the file as a psd, the quality of the video displayed deteriorates when I bring the file up to work on it. Then n