Do I gee a copy of submitted forms with the free account?

Do I gee a copy of submitted forms with the free account?

Hi;
Using the Free account you can view the submitted data and export it to Excel, PDF or CSV (the data is in a table format).
Email Notifications, where an email comes to you each time someone submits the form is a paid level feature.  Another Paid level feature is "Download Response as PDF" which allows you to save/download a PDF version of the filled out form that looks like the original.
Thanks,
Josh

Similar Messages

  • Submitting form with attachments.

    Hi,
    I have a simple need. I am stucked in it. What i need to do is:
    Step 1: User1 starts opens a pdf form inside LC Workspace, fill it, attach files (Reader Extended) and then submit it.
    Step 2: User2 receives the filled form with attcachments. Can view attachments and save them in repository.
    I am stucked at step 1. User is able to fill the form, add attachments but can't submit it. If I am not enabling the Reader Extensions for attachments (Disabling functionality to attach files) then it works fine. But when using with attachments option, it fails. It gives no error, no message and does not passed to the 2nd user.
    Is there any special requirement in developing such process/form ??
    Please help me out on it.
    Abhinav

    I've studied the HTML generated by UIX and it has following bugs and misfeatures:
    1. Misfeature: Submitting with Enter works ONLY if there is exactly one text field in the form (no submit button is actually needed), as Brian Stoler wrote. I don't understand reason for this.
    2. Bug: UIX generates javascript function "_submitOnEnter" which is called as event handler for "onKeyPress" event. But this function is erroneously generated multiple times, once for each form in the page. Browsers (Mozilla and IE) use the latest implementation. This function is different for forms with one text field and for forms with more text field, but only the first one can do the job. As a consequence of this, Enter can submit the form only if the last form on a page has single text field (which is for example not the case of search form with single field above another form...)
    Tested with UIX 2.1.7 in JDeveloper 9.0.3.3, using UIX as JSP tag library.
    Workaround:
    1. Use Opera browser: it submits form with enter key even if there is no submit button (this does not work for the first text field in the form, because it has "onkeypress" event handler).
    2. Implement this feature by hand yourself, if you really need it (see below).
    3. Use accessKey: allows to submit form with Alt+<key> combination (followed by Enter with IE).
    Implementing Enter key submits with Javascript:
    1. Put the following function to the header (or to javascript library):
    function enter(e, frm) {
    var kc;
    if(window.event) kc=window.event.keyCode;
    else if(e) kc=e.which;
    else return true;
    if(kc==13) {
    submitForm(frm,1);
    return false;
    Function copied from UIX (C).
    2. Add this event handler to each input element:
    onKeyPress="return enter(event, 'formName');"
    It is obvious that this is error prone, but it works with all browsers...
    Will this be fixed in future versions?
    Why only form with one text field can be submitted?

  • Submitting form with Enter key

    Hello,
    in standard html form, when you have form with submit button, the enter key when any form element is selected submits the form.
    This is very convenient for users, so I want this with UIX forms. I know it is possible (I have one form where it is working), but I can't get it working anywhere else.
    This code works:
    <uix:form method="post" name="newRoleForm">
    <uix:inlineMessage prompt="Role name">
    <uix:textInput name="newRoleName" />
    <uix:spacer width="15" />
    <uix:submitButton text="Create" formName="newRoleForm" />
    </uix:inlineMessage>
    <uix:formValue name="jboEvent" value="newRole" />
    </uix:form>
    When I copy this code to another page, it does not work...
    Can somebody help, please?

    I've studied the HTML generated by UIX and it has following bugs and misfeatures:
    1. Misfeature: Submitting with Enter works ONLY if there is exactly one text field in the form (no submit button is actually needed), as Brian Stoler wrote. I don't understand reason for this.
    2. Bug: UIX generates javascript function "_submitOnEnter" which is called as event handler for "onKeyPress" event. But this function is erroneously generated multiple times, once for each form in the page. Browsers (Mozilla and IE) use the latest implementation. This function is different for forms with one text field and for forms with more text field, but only the first one can do the job. As a consequence of this, Enter can submit the form only if the last form on a page has single text field (which is for example not the case of search form with single field above another form...)
    Tested with UIX 2.1.7 in JDeveloper 9.0.3.3, using UIX as JSP tag library.
    Workaround:
    1. Use Opera browser: it submits form with enter key even if there is no submit button (this does not work for the first text field in the form, because it has "onkeypress" event handler).
    2. Implement this feature by hand yourself, if you really need it (see below).
    3. Use accessKey: allows to submit form with Alt+<key> combination (followed by Enter with IE).
    Implementing Enter key submits with Javascript:
    1. Put the following function to the header (or to javascript library):
    function enter(e, frm) {
    var kc;
    if(window.event) kc=window.event.keyCode;
    else if(e) kc=e.which;
    else return true;
    if(kc==13) {
    submitForm(frm,1);
    return false;
    Function copied from UIX (C).
    2. Add this event handler to each input element:
    onKeyPress="return enter(event, 'formName');"
    It is obvious that this is error prone, but it works with all browsers...
    Will this be fixed in future versions?
    Why only form with one text field can be submitted?

  • RePopulate form with the information what user just submitted.

    I have one form. That form has one submit button. I have to create a new button in that form say call "New button". When user submits that form it will display result page. That result page will have one back button. When I hit back button I can go back to that form again. After I go back to that form when I hit "New Button" the form field will fill up with the information what user just entered before submit. I am using JSP and Struts in my application. This functionality is basically need for the user so that user do not need to entered the same information again.
    Can you please help me what I have to do for that?
    Thank you very much for your help.

    Well, in your program, do you have one Form, or do you create a new Form whenever it's needed (ie, when the program starts up, and when the Back button is pushed from the result page)?
    If you have one Form (which is the best approach in my opinion), then it probably follows this general structure:
    public class Form {
       public Form() {
          // Do some constructor work in here
       public void submit() {
          // This is probably called when the user clicks the Submit button
    }... obviously there's a lot more stuff going on inside the class that I have listed right there, but what I meant by 'storing the values as fields' would actually be really simple to implement.
    A field is:
    either class or instance member variables. non-local variables. Field also includes static final constants. http://mindprod.com/jgloss/fields.html
    In short, it's just a variable stored in your class.
    I'm sure you already have text fields and buttons as fields in your form class, probably like this:
    public class Form {
       private JTextField userNameField = new JTextField("Input User Name Here");
       private JButton submitButton = new JButton("Submit");
    }And if you don't, then you should probably adjust your structure so you do. Anyways, to store the data the user has input, just create Objects to store them.
    public class Form {
       private JTextField userNameField = new JTextField("Input User Name Here");
       private JButton submitButton = new JButton("Submit");
       private String userName = ""; // This is our 'name field.' It is set to whatever is in the userNameField when the submit method is invoked. It is what stores the user's name. In the refresh method, you can set the userNameField's text (via setText) to this value.
       // ...You could make a field for each thing you need to store, such as age, race, eye color, whatever.
    To implement 'storing' and 'using' these fields is also simple. You'd just need to adjust your submit method, and provide a new method that we'll call refresh. Now, by refresh I am not referring to a browser's refresh button which refreshes the page- I just named it refresh because it 'refreshes' our Form with the data the user previously input.
    public class Form {
       public void submit() {
          // Do submittal stuff
          userName = userNameField.getText(); // This line right here ensures that the user's name is 'stored.'
       public void refresh() {
          userNameField.setText(userName); // This line causes the userNameField to be 'refreshed' with the data previously submitted.
       }Hope that helps.

  • Why some contact forms doesn't work on some websites? We don't receive the submission form with the information?

    Why some contact forms doesn't work on some websites? We don't receive the submission form with the information?

    Hi Aish
    I wanted to check the following, but the URL is not found, you have another one?
    thanks
    Nicole
        4. Visit http://my-site.com/scripts/form_check.php in a web browser and make sure you see all green checkmarks. If some items do not display green checkmarks that means that the hosting server is not configured correctly to allow the Form widgets to send email messages to the address you've specified.
                    Contact your web-hosting provider about the server configuration problem. Describe the items that are not marked as green in the form check page, so that they can help you set up the servers to use the correct settings.
    Il giorno 9-set-2014, alle ore 16:11, Aishvarya Raj Rastogi <[email protected]> ha scritto:
    Why some contact forms doesn't work on some websites? We don't receive the submission form with the information?
    created by Aishvarya Raj Rastogi in Help with using Adobe Muse CC - View the full discussion
    Hi Nicole,
    What is the "From" email address in your form?
    Also, have you checked the spam folder?
    Please check the following posts as well :
    https://forums.adobe.com/docs/DOC-3581
    Re: PHP mail may be disabled or incorrectly configured on the web server.
    Regards,
    Aish
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6714281#6714281
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Perform as pdf form with the ability to insert pictures

    How to perform as pdf form. with the ability to insert pictures?

    You want your users to be able to insert images into a PDF form? That is only possible if they're either using Acrobat, or if they're using the latest version of Reader (XI) and the image is in PDF format.

  • How to create a form with the Designer Peopletools

    Help friends of the forum:
    Any page of examples of how to create forms with the tool in PeopleSoft Application Designer

    http://www.oracle.com/technology/documentation/psftent.html
    Down Peopletools 8.xx PeopleBooks and look at the PeopleSoft Application Designer
    It walks you through the whole Process

  • I have a web form with the save function, which works well until another person is required to complete a part of the form.  Can the form link be sent to others?

    Some respondents need to save it part way through and send the form on to someone else to complete a section.  When they send the link the other people dont seem able to see the form with the content previously completed, rather a blank form opens up. Can this be fixed? if so how?

    thanks. We are having continuing problems - after 45 mins on to adobe help, the only suggestion given is to try a different browser.  unsurprisingly this does not work! I am using the email received - which has the 'retrieve form' box attached.  One user was able to save it once, went back later did some more, and saved (or so she thought) when she went back again, it was totally empty! 
    I have had really mixed results - some have used the form with no problem, whilst others have reported the same issue (using various browsers).  Any suggestions..... (i set 28 days, as the time to keep open, and all are within this time frame).
    amanda

  • My I phone has plenty of storage but will  not download any apps free or paid for when I press install the installation symbol appears briefly and then the page reverts to the original  form with the price or free on the right hand side.

    My I phone has plenty of storage but will  not download any apps free or paid for when I press install the installation symbol appears briefly and then the page reverts to the original  form with the price or free on the right hand side.

    Call 1-800-275-2273...ask to talk to "Customer Relations"...no one else.
    Good luck.

  • Sending a copy of submitted forms to submitters

    Is there a way in forms central to ensure that those that submit forms get a copy of what they submitted to confirm they hav submitted - (along with form details).
    Lisa Jensen

    Hi Lisa,
    The Submission Receipts feature is what you're looking for. The following post describes the feature in detail:
    http://forums.adobe.com/thread/918711
    Let me know if you have any additional questions.
    Regards,
    Brian

  • Bug submitting form with SpryUtils.submitForm

    You can view this problem here:
    http://www.bachelorsguide.ca/spry16Ajaxsubmit.html
    In the SpryUtils.js file I have changed the final "return:
    false;" to "return: true;" as I want the form to submit to the
    defined action of the form after doing the ajax submit.
    This works in IE... it submits the ajax hit with all the form
    variables then submits to the a third party payment page with all
    the form variables.
    In FireFox it submits the ajax post but doesn't seem to be
    passing the form variables with that submit, then it posts the form
    to the thrid party and all the form variables are passed for that
    hit.
    The issue seems to be that the form variables are not
    submitted with the Ajax post when using FF but are submitted when
    using IE7.
    When I leave the final "return: false;" then the Ajax hit
    DOES work in FireFox... only when I change it to true; that FireFox
    stops working...
    Please help

    Diana,
    The line you gave me was giving me syntax error.
    i played with it and found that if I removed all references
    to any return that it worked.
    So I this right now......
    onsubmit="Spry.Utils.submitForm('order_form',
    '',{method:'post', url:'modpython/index.py?aoi=true',
    async:false});
    No returns, and the Utils file has the original code with the
    return false at the end.
    I don't know what the syntax issue was but it is working in
    Safari, IE7 and FF and I want to give you a big kiss!
    Ok sorry for being inappropriate but I am extremely happy.
    Thanks Diana so much... if you ever have DB issues let me
    know. I owe you.

  • Issues submitting form with Reader X

    I am using Adobe Reader X on a Mac and the program will not allow me to submit the form. When I click on the submit button, a message pops up that says this operation is not permitted. If I open the form in an older version of Reader, it works correctly. Why won't X work? Is there a way to fix it?

    Some questions:
    1. Is it a secured form with some printing restrictions? You can check this from the document properties under the Security tab.
    2. Is it happening with all the forms or some particular ones?
    3. Some specific detaills like printer/ OS etc might be helpful.

  • Submitting form with multiple records.

    Can any one help me how to implement following functionality.
    I have page flow portlet which renders list of 10 records. I need to display record name, record number and one check box for every record. User can select some of the records and add those to one group. I am able to disply the list successfuly by using <netui:repeater> tag. Problem is coming when i select some of the records and click on submit. It is not updating coresponding form bean. My form bean is as following.
    public static class RecordsListBean extends FormData{
    private String userId;
    private List recordList;
    setters and getter for above properties
    recordlist contains list of RecordBean. RecordBean class having two properties record name , record number , isSelected (boolean) and coresponding setters and getters.
    When i try to submit the form i am getting errors something like unable to edit actionForm.recordList[0].isSelected value for all records.
    Can anyone help me why i am getting this? and let me know if you know best practise method to implemet this.
    Thanks.
    Edited by: user10471254 on Feb 25, 2010 9:35 PM

    Hi
    I saw one weird issue with WLP 10.3. I have a form bean with one instance variable named as "iClassCard". I have setters and getters. In JSP I use this form object. When I put a netui:text field and assing the datasource value, when I type actionForm. it shows the list of all instance variables. Weird thing is it shows my instance varialbe with uppercase "i" like IClassCard instead of "iClassCard". If I forcefully change this to like datasource=actionForm.iClassCard, it shows yellow line waring saying variable not defined. To fix this I just changed my instance variable in form bean to uppercase like IClassCard. Or worstcase just do not use "i" as the beginning character for any instance variable. So give a try renaming the variable isSelected on your side and see if this works.
    Coming to your usecase you can use List type and netui-data:repeater tag. Make sure that incase if you use netui:anchor tags to sumbit the form ations, please do add formSubmit="true" something like <netui:Anchor formSubmit="true" action="yourActionName" ...>. If you do not set formSubmit = "true", the List will not be updated with the user entered values when you view on pageflow side in that submit action method.
    Thanks
    Ravi Jegga

  • Submitting Form with MySLQ database...

    I need to set my form through a MySLQ database but I don't
    know how. My host sent me this Formmail:
    http://www.dtheatre.com/scripts/formmail_doc.php
    (download:
    http://www.dtheatre.com/scripts/formmail_files/formmail.v50.zip
    I saved it in my website root folder but I don't know how to
    set the php form with my html form. ...There is a demo included,
    but doesn't help.
    Please help me!!
    Thanks in advance!!

    Form mail scripts send form contents via email. It sounds
    like you want to just insert data from the form into a database.
    Just use the build in DW Insert Record behavior.

  • Can I update multiple forms with the same dropdown at the same time

    I have 20+ forms that have a common dropdown.  Each form has between 1 and 15 instances of this dropdown.  The values in the dropdown are updated on a frequent basis.
    Currently I have an identical Document JavaScript named 'UpdateDropdowns' in each form.
    function update_dropdowns()
        var aList = ["  ", "A", "B", "C"];
        //Add any other dropdown choices in the var aList in the format shown
        getField("TradeNameDropdown1").setItems(aList);
        getField("TradeNameDropdown2").setItems(aList);
        // Add any other dropdowns added to the form in the format shown
        // Open Log Console (Ctrl-J), enter update_dropdowns()  (Ctrl-Enter)
    There are over 30 choices in my present iteration of var aList, but for brevity I've only listed the 3 examples to illustrate my JavaScript.
    Currently when I have to update the dropdown, I follow these steps
    Open form
    Open UpdateDropdowns Document JavaScript
    Add the additional value(s)
    Highlight and copy the updated var aList
    Close the Document JavaScript
    Update the form in the Log Console
    Repeat process for all forms (pasting in the new var aList to ensure conformity)
    Is there a way to update all of my forms at once without having to go through this form by form process?

    That sounds fantastic try67.  I have the most recent version of Acrobat Pro.
    I'm unfamiliar with the process.  Will 'Help' be able to walk me through it?
    I'm not in the office anymore, so not in front of the program.

Maybe you are looking for

  • Cannot remove Disk Icons from Disk Images or External Drives from Desktop

    After years with PPCs, I just upgraded to an Intel Mac. I am now running into a funny problem. The majority of the time (although occasionally it works as it should), I am unable to eject disks. These include disk images from my internal hard drive,

  • HT1338 i have a mac book pro and, a i cant update my flash player ,why?

    every time iwant to see a video on line ,icant it says ihave update my flash player.but then after iget the sofware that this mac itsnot compatibleor i dont know what that means .can somebody give any advise or input on this pls, i really apprecciate

  • Error loading item GR4Broadcaster.

    Hi, I am getting the following error "Error loading item GR4Broadcaster." when im trying to send a BI Report to the mail. I am using Durairaj Athavan Raja's  Function Module to do so. Regards, Virat

  • from-action on glassfish

    Hello, I have an application developed in tomcat. Now I have to deploy it in glassfish. But I am getting an exception. The exception message suggests that <from-action> is not valid for the xsd. This is the starting tag of faces-config <faces-config

  • Domains/domain1 - log

    I deployed the war file today in GlassFish 3 server today, but the log file shows only logs for previous deployment? It does not show today's date? Edited by: user1075464 on Feb 12, 2011 12:44 PM