Submit form with pop up confirmation?

Is it possible to have a form submit but just have a pop up confirmation or just replace the form with a conformation instead of going to a new page?

Ajax Form submission Brad
http://forums.adobe.com/docs/DOC-1749
Just a note, this currently has a total limit of 1024 characters through the JSON submission which is all the data. So it can not be overly big forms and messages.

Similar Messages

  • Urgent : Issue with Pop to confirm

    l_popup = l_window_manager->create_popup_to_confirm(
      text = str_table
      button_kind = 1
      message_type = 1
    close_button =  'X'
      window_title = 'Confirmation'
      window_position = if_wd_window=>co_center ).
    Here is my code to show pop to confirm screen. I want OK pop up so i used the value "1" for button_kind parameter but i get this runtime error saying
    "No Button 7 Is Defined for Popup POPUP_TO_CONFIRM"
    even after passing the value as 1 iam not able figure out why the system is taking the valye as 7. can someone please give me an immediate solution for this.
    Thanks,
    Suri

    Hi,
    i tried with same thing in m y system and it is working .
    Do one thing :
         <b>Check the fixed values in the domain of WDR_POPUP_BUTTON_KIND.</b>
    whether 1 is defined for ok.
    Madhu

  • Can't submit form with multiple signatures

    I have a form with multiple signatures. I've enabled Reader Rights. After the first signature signs, the user must save the document. When the document is saved, then the user cannot submit the form to the next signer. Is there a way to change how this is working?
    Thanks,
    MDawn

    MDawn
    Did you design the form with Adobe Designer?  Assuming you did, when you add a signature field, there is a property enabled by default that "Locks all fields" after signing.  A submit button is also considered a field so it will be locked after the first signature is applied.
    You need to either disable this property (I would not recommend this) or create field collections that are assigned to specific signature fields.  A field collection controls which fields are locked by each signature field when signed.
    Regards
    Steve

  • Submit form with response in new browser window

    Is it possible to set up a submit button so that it pops up the response in a separate browser window?  With an HTML form, I can do it using target="_blank", but not aware of any such option on a LiveCycle submit button. 
    If it can't be done, maybe there's another way to do what I need.  Users complete the data-entry PDF form and submit the data to a servlet, which returns another (different) PDF.  My user may look at this PDF, see a problem, and want to return to the data-entry form to change what he's entered before regenerating the output.  However, by this point my original data-entry PDF is gone.  I am not using LiveCycle on the server.  Any ideas?

    Many thanks for your help on this Paul.  I decided to go with the hostContainer approach despite my reservations.  Here's a simplified version of my servlet.  This version simply parrots back the XML in a separate browser window.  I hope this helps someone.
    package ca.jlangdon.sampleservlets;
    import java.io.*;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class AnnuityFF extends HttpServlet {
            static final long serialVersionUID = 1L;
            public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, java.io.IOException {
                    response.setContentType("text/html");
                    java.io.PrintWriter out = response.getWriter();
                    out.println("<html><head>");
                    out.println("<title>Fulfillment Generator</title>");
                    out.println("<style>body { margin: 0px; overflow:hidden }</style>");
                    out.println("<script type='text/javascript'>");
                    out.println("var int=self.setInterval('setUp()',1000);");
                    out.println("function setUp() {");
                    out.println("try {");
                    out.println("var oPDF = document.getElementById('oPDF');");
                    out.println("oPDF.messageHandler = {};");
                    out.println("oPDF.messageHandler.onMessage = onMessageFromPdf;");
                    out.println("int=window.clearInterval(int)");
                    out.println("} catch(e) { } }");
                    out.println("function onMessageFromPdf(oStrings) { document.getElementById('myTextArea').value = oStrings[0];");
                    out.println("document.forms['myForm'].submit(); }");
                    out.println("</script></head>");
                    out.println("<body scroll='no'>");
                    out.println("<div id='myFrame' style='background-color:transparent;border:0px'>");
                    out.println("<object id='oPDF' height='100%' width='100%' data='FulfillmentGenerator.pdf'></object></div>");
                    out.println("<form id='myForm' method='post' action='.' target='_blank'>");
                    out.println("<textarea id='myTextArea' name='myTextArea'></textarea>");
                    out.println("</form></body></html>");
            public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, java.io.IOException {
                    try {
                            String strExtract = request.getParameter("myTextArea");
                            response.setContentType("text/xml");
                            PrintWriter out = response.getWriter();
                            out.println(strExtract);
                    catch (Exception e) {
    My form is called FulfillmentGenerator, and it's stored in the root of the web app.  On it there's a button with this javascript on the click event:
    var oDoc = event.target;
    var strData = xfa.datasets.data.resolveNode("AnnuityFulfillmentPackage").saveXML("pretty");
    var strings = [strData];
    try {
    oDoc.hostContainer.postMessage(strings);
    catch (ex) {
    xfa.host.messageBox("Error while posting a message to the container: " + ex);

  • PDF submit form with denial button trouble

    Hello all. I have researched a ton and found out how to have a submit button, via the fake email button, reading a field and incorporating that in the subject line. The next thing I need to do is to have a denial button that creates a new email and sends it to an email address input on the form from the user with the subject line reading "Denied Turn in Request" and the pdf attached. I thought that it would the same as the submit button but I can't get it to work at all.
    The flow of the pdf document is:
    User has document on their computer
    Fill it out and click submit button
    Emailed to my office
    If denial is needed click denial button
    pdf document is emailed to the email address on the form
    wash, rinse, repeat.
    Any help is appreciated. My network will not allow me to upload the document at work. I will once I get home.

    If you are using the fake submit button approach you shoudl be able to modify the email parameters (through script) when the user
    hits the denial button and then hit the email button programmatically of course. This is no different than what you are already doing.
    Paul

  • Cannot submit form with Adobe Reader 7

    I have created a fillable form in Adobe Acrobat 8 Professional and have enabled user user rights so that people using reader can save a copy of the PDF.
    On the form itself, there is a button that is of type submit that specifies a valid URL and submits the data as XDP.
    Whilst working in Lifecycle Designer or Adobe Professional, I am able to submit the form and its content. Once I open the PDF in Adobe Reader 7.0, when I try to submit the form I always get this error "cannot handle content type text/html; charset=utf-8".
    I have no idea what is the error and I am hoping some one can provide some guidance.
    Thanks

    It is certainly true that Adobe Reader can't handle text/html - it
    isn't a web browser and doesn't have HTML function - so what other
    content types have you tried? (I think some versions may give the
    error and others may fail silently). I don't think Adobe are ignoring
    the problem: the message is clear and Reader is working as designed. I
    imagine to work you need to return a suitable PDF or XML response.
    I agree it would be very helpful if Adobe provided accessible
    information on what they do expect. This may be a reflection of their
    wish to sell LiveCycle server products to handle your submission.
    Anyone out there with a working solution?
    Aandi Inston

  • Can't submit form with table of buttons

     

    [email protected] (Jeroen) wrote in message news:<[email protected]>...
              > When I click a Klaar button, the browser doesn't even go to klaar.jsp.
              >
              The reason: you close your first form too early. Put the </form> after
              your <input type='submit value-'Klaar' .....>
              Oh BTW, this is a shocker - too much Java inside your HTML! You should
              consider writing a custom tag. (My 2 cents)
              Cheers
              ry
              Consultant
              http://www.soft-trek.com.au
              

  • Can I submit form using app.launchURL

    I want to submit a pdf form without replacing my page. I need it open in new tab.
    The script below is work, but it replaces my old page
    this.submitForm({
    cURL:
    "http://localhost:8080/project/TestServlet",
    cSubmitAs:
    "PDF",
    cCharset:
    "utf-8"
    This script is open a new tab but I have no idea how can I submit a form using this
    app.launchURL("http://localhost:8080/project/TestServlet", true);
    Can anyone guide me how to submit form with open new tab on the web browser?
    Thanks.

    No, you can't submit the form like that. You could submit some form data as
    a URL parameter, though.

  • 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?

  • Can not keep drawable signature option in reader on a form with a mailto: submit button added.

    I hope someone has run into this.  I have acrobat 11.0.10 to create fill-able forms and reader 11.0.10 to view and fill them.  Do to the nature of the forms a drawn signature is required and is available right up until I add a submit button with a mailto: action.  Then all that is available in the reader is the digital certificate.  I should add that I save the form without reader extensions.  Is there a way to add the auto-adressed mailto function for the person filling the form and still keep the drawable signature option for signing?

    - is it possible to have more than one form on the page. If so how do
    I determine which form is submitted isDefined('form1'),
    isDefined('form2') does not seem to work,
    /quote
    Yes.
    - if there are two buttons in the form how can I tell which one was
    preses as both seem to return true when tested with isDefined()
    /quote
    Give the buttons different name attributes. On your action page check
    with StructKeyExists(Form, "name_of_first_button") and
    StructKeyExists(Form, "name_of_second_button") which one was pressed.
    Mack

  • Struggling with the Submit Form

    My incomplete site has three links which don't seem to work at all. Unsurprisingly they are all the same file type and I don't have the slightest clue on how to fix it!
    http://www.expertpcguides.com/contact-us.html
    I have supplied the coding for one of my pages 'Site Feedback'. My goal is to create a send-able form where the user can contact us at [email protected]. You guys supplied me with this script, but for some reason (probably due to my own fault) it isn't working! Thanks for the help.
    Technical Support Page:
    <!DOCTYPE HTML>
    <html>
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>technical-support</title>
            <link rel="stylesheet" href="css/common-reset.css" type="text/css" media="screen" />
            <link rel="stylesheet" href="css/common-style.css" type="text/css" media="screen" />
            <link href="lightbox/css/lightbox.css" rel="stylesheet" />
            <link href='http://fonts.googleapis.com/css?family=Open+Sans%7CBaumans%7CArvo%7CRoboto' rel='stylesheet' type='text/css' />
            <script src="js/modernizr.js"></script>
            <script src="js/respond.min.js"></script>
            <!-- include extern jQuery file but fall back to local file if extern one fails to load !-->
            <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
            <script type="text/javascript">window.jQuery || document.write('<script type="text/javascript" src="js\/1.7.2.jquery.min"><\/script>')</script>
            <script src="lightbox/js/lightbox.js"></script>
            <script src="js/prefixfree.min.js"></script>
            <script src="js/jquery.slides.min.js"></script>
            <!--[if lt IE 9]>
                <style>
                    header
                        margin: 0 auto 20px auto;
                    #four_columns .img-item figure span.thumb-screen
                        display:none;
                </style>
            <![endif]-->
            <script>
            $(function() {
              $('#slides').slidesjs({
                height: 235,
                navigation: false,
                pagination: false,
                effect: {
                  fade: {
                    speed: 2600
                callback: {
                    start: function(number)
                        $("#slider_content1,#slider_content2,#slider_content3").fadeOut(500);
                    complete: function(number)
                        $("#slider_content" + number).delay(200).fadeIn(1000);
                play: {
                    active: false,
                    auto: true,
                    interval: 28000,
                    pauseOnHover: false
            </script>
         <style type="text/css">
    <!--
    .style4 {
      font-size: 20px
    .style5 {color: #0000FF}
    .style6 {
      color: #0099CC;
      font-weight: bold;
    .style9 {
      color: #CCCCCC;
      font-size: 90%;
    .style12 {font-family: Georgia, "Times New Roman", Times, serif; color: #000000; font-size: 120%; }
    .style16 {color: #000099}
    .style45 {font-family: Georgia, "Times New Roman", Times, serif; color: #0000FF; font-size: 120%; }
    .style46 {color: #000000}
    -->
            </style>
    </head>
      <body>
            <header>           
                <h1 class="style5">Expertpcguides.com</h1>
              <p class="style6">Technology Explained.</p>
    <select id="alternative_menu" size="1">
                    <option>Home</option>
                    <option>About</option>
                    <option>Contact us</option>
                    <option>Login/Register</option>
                    <option>Forums</option>
    <option>Privacy Policy</option>
                    <option>Disclaimer</option>
                    <option>Legal Notice</option>
                </select>
                <nav>
                <h2 class="hidden">Our navigation</h2>
                    <ul>
                        <li><a href="index.html" class="style46">Home</a></li>
                      <li><a href="about-us.html" class="style46">About</a></li>
                      <li><a href="javascript:void(0)" class="style46">Contact us</a></li>
                      <li><a href="javascript:void(0)" class="style46">Login/Register</a></li>
                      <li><a href="javascript:void(0)" class="style46">Forums</a></li>
                  </ul>
                </nav>
            </header>
            <section id="spacer"> 
            <h2 class="hidden">Dolor sit amet</h2>         
                <p><span style="color:#5cb3ff;">D</span><span style="color:#6cbafe;">i</span><span style="color:#7cc1fe;">c</span><span style="color:#8cc9fd;">t</span><span style="color:#9cd0fd;">i</span><span style="color:#abd7fc;">o</span><span style="color:#bbdefc;">n</span><span style="color:#cbe6fb;">a</span><span style="color:#dbedfb;">r</span><span style="color:#ebf4fa;">y</span> | <span style="color:#ffffff;">A</span><span style="color:#dcf1ff;">r</span><span style="color:#b9e3ff;">t</span><span style="color:#96d5ff;">i</span><span style="color:#74c8ff;">c</span><span style="color:#51baff;">l</span><span style="color:#2eacff;">e</span><span style="color:#0b9eff;">s</span> | <span style="color:#1c95ff;">C</span><span style="color:#299bff;">o</span><span style="color:#35a0ff;">m</span><span style="color:#42a6ff;">p</span><span style="color:#4facff;">u</span><span style="color:#5bb2ff;">t</span><span style="color:#68b7ff;">e</span><span style="color:#75bdff;">r</span><span style="color:#81c3ff;"> </span><span style="color:#8ec9ff;">H</span><span style="color:#9bceff;">i</span><span style="color:#a7d4ff;">s</span><span style="color:#b4daff;">t</span><span style="color:#c1e0ff;">o</span><span style="color:#cde5ff;">r</span><span style="color:#daebff;">y</span> | <span style="color:#1c95ff;">F</span><span style="color:#2d9dff;">r</span><span style="color:#3fa5ff;">e</span><span style="color:#50adff;">e</span><span style="color:#62b6ff;"> </span><span style="color:#73beff;">D</span><span style="color:#85c6ff;">o</span><span style="color:#96ceff;">w</span><span style="color:#a8d6ff;">n</span><span style="color:#b9deff;">l</span><span style="color:#cbe7ff;">o</span><span style="color:#dcefff;">a</span><span style="color:#eef7ff;">d</span><span style="color:#ffffff;">s</span></p>
    <div class="search">
    <form id="searchbox_000429658622879505763:gczdzyghogq" action="https://www.google.com/cse/publicurl?cx=000429658622879505763:gczdzyghogq">
    <input value="000429658622879505763:gczdzyghogq" name="cx" type="hidden"/>
    <input value="FORID:11" name="cof" type="hidden"/>
    <input id="q" style="width:150px;" name="q" size="70" type="text" />
    <input value="Search" name="sa" type="submit"/>
    </form>
    </div>
        </section>
    <section id="boxcontent">
    <section id="four_columns">
                <h2 class="style16">
                    Support</h2>   
                <p class="style45">
                    <?phpif(isset($sent)) {
        echo "<h3>$sent</h3>";
    if(isset($error)) {
    echo "<h3>$error</h3>";
    ?>
    <form id="form1" name="form1" method="post" action="">
    <p><span class="style46"><strong>Name:</strong></span></p>
    <form name="form1" method="post" action="">
      <label>
      <input type="text" name="Namefield" id="Namefield">
      </label>
    </form>
    <p><span class="style46"><br />
    </span></p>
    <p><span class="style46"><strong>Email:</strong></span></p>
    <form name="form2" method="post" action="">
      <label>
      <input type="text" name="emailfield" id="emailfield">
      </label>
      <span class="style46"><br />
      </span>
    </form>
    <p><span class="style46"><strong>Computer Brand:</strong></span></p>
    <form name="form3" method="post" action="">
      <label>
      <select name="computerbrandfield" size="5" id="computerbrandfield">
        <option>Atari</option>
        <option>Compaq</option>
        <option>CTX</option>
        <option>Custom Built</option>
        <option>Cyber Max</option>
        <option>Dell</option>
        <option>Digital</option>
        <option>DTK</option>
        <option>E-machine</option>
        <option>Gateway</option>
        <option>Hand Held</option>
        <option>Hewlett Packard</option>
        <option>IBM</option>
        <option>Lenevo</option>
        <option>Macintosh</option>
        <option>Micron</option>
        <option>Midwest Micro</option>
        <option>NEC</option>
        <option>Packard Bell</option>
        <option>Quantex</option>
        <option>Sharp</option>
        <option>Sony</option>
        <option>Sun</option>
        <option>Systemax</option>
        <option>Tiger Direct</option>
        <option>Toshiba</option>
        <option>Twinhead</option>
        <option>Winbook</option>
        <option>Xi Computer</option>
        <option>Zenith</option>
        <option>Other Computer Brand</option>
        <option>Other Device</option>
      </select>
      </label>
    </form>
    <p><span class="style46"><br />
    </span></p>
    <p><span class="style46"><strong>Operating System:</strong></span></p>
    <form name="form4" method="post" action="">
      <label>
      <select name="computerbrandfield3" size="5" id="computerbrandfield3">
        <option>Windows 8</option>
        <option>Windows 7</option>
        <option>Windows Vista</option>
        <option>Windows XP</option>
        <option>Windows 2000</option>
        <option>Windows 2003</option>
        <option>Mac OS</option>
        <option>Linux Variant</option>
        <option>BSD</option>
        <option>DOS / PC-DOS</option>
        <option>OS/2 Warp</option>
        <option>Windows 98</option>
        <option>Windows 95</option>
        <option>Windows CE</option>
        <option>Windows ME</option>
        <option>Windows NT</option>
        <option>Windows 3.x</option>
        <option>Other</option>
        <option>Unknown</option>
        </select>
      </label>
    </form>
    <p><span class="style46"><br />
    </span></p>
    <p><span class="style46"><strong>Amount of RAM:</strong></span></p>
    <p><span class="style46">
      <select name="computerbrandfield2" size="5" id="computerbrandfield2">
        <option>0mb-1GB</option>
        <option>1GB-2GB</option>
        <option>2GB-4GB</option>
        <option>More than 4GB</option>
        </select>
      </span></p>
    <p><span class="style46"><br />
    </span></p>
    <p><span class="style46"><strong>CPU Type:</strong></span></p>
    <p>
      <select name="computerbrandfield4" size="5" id="computerbrandfield4">
        <option>Power PC</option>
        <option>Rise mP6</option>
        <option>Transmeta Crusoe</option>
        <option>Other</option>
        <option>Unknown</option>
        </select>
    </p>
    <p> </p>
    <p><span class="style46"><strong>Computer Type:</strong></span><span class="style46"><br />
    </span></p>
    <p><span class="style46">
      <select name="computerbrandfield5" size="5" id="computerbrandfield5">
        <option>Desktop/Workstation</option>
        <option>Gaming System</option>
        <option>Laptop</option>
        <option>PDA / Mobile</option>
        <option>Server</option>
        <option>Other</option>
        </select>
      <br />
    </span></p>
    <label><span class="style46"><strong>Question:</strong><br />
    </span><br />
    <textarea name="textarea" id="textarea" cols="45" rows="5"></textarea>
    </label>
    <p> </p>
    <p>
    <label>
    <input type="submit" name="Submit" id="Submit" value="Submit" />
    </label>
    </p>
        <p class="style12"><br class="clear"/>
        </p>
      </section><br class="clear"/>
        </section>
    <section id="text_columns">
    <section class="column2"></section>
            </section>
    <footer>
          <h2 class="hidden">Our footer</h2>
          <section id="copyright">
            <h3 class="hidden">Copyright notice</h3>
            <div class="wrapper">
              <div class="social"> <a href="index.html"><img src="img/G.png" alt="G" width="25"/></a> <a href="index.html"><img src="img/U.png" alt="U" width="25"/></a> <a href="index.html"><img src="img/I.png" alt="I" width="25"/></a> <a href="index.html"><img src="img/D.png" alt="D" width="25"/></a> <a href="index.html"><img src="img/E.png" alt="E" width="25"/></a> <a href="index.html"><img src="img/S.png" alt="S" width="25"/></a> </div>
              &copy; Copyright 2014 by Expertpcguides.com. All Rights Reserved. </div>
    </section>
          <section class="wrapper">
            <h3 class="hidden">Footer content</h3>
            <article class="column hide">
              <h4>Site Links</h4>
                <div class="class1">
                  <p class="footer-text"><a href="web-contributors.html" >Developers/Contributors</a></p>
                </div>
              <div class="class1">
                  <p><a href="create-a-page.html" class="style10">Create a page</a></p>
              </div>
              <div class="class1">
                <p><a href="point-system.html" class="style10">Rewards System</a></p>
              </div>
              <div class="class1">
                <p><a href="privacy.html" class="style10">Privacy</a></p>
              </div>
            </article>
    <article class="column midlist2">
              <h4 class="style4">Follow Us</h4>
              <ul class="style4">
                <li><div class="class1">
                    <p class="footer-text"><img src="img/Facebook-logo.png" alt="Facebook Image" width="32" height="34"/> <a href="https://www.facebook.com/expertpcguides" class="style23">Facebook</a></p></div></li>
    <li><div class="class1">
                  <p class="footer-text"><img src="img/Twitter-Logo.jpg" alt="Twitter Image" width="30" height="33"/><a href="https://twitter.com/ExpertPcGuides" class="style23" > Twitter</a></p></div></li>
      <li><div class="class1">
        <p class="footer-text"><img src="img/Google+Logo.jpg" alt="Google + Image" width="31" height="35"/><a href="https://plus.google.com/115474035983654843441" class="style23"> Google Plus</a></p></div></li>
      <li><div class="class1">
        <p class="footer-text"><img src="img/Pininterest-Logo.png" alt="Pininterest Image" width="33" height="34" ><a href="http://www.pinterest.com/expertpcguides/" class="style23"> Pininterest</a></p></div></li>
              </ul>
            </article>
            <article class="column rightlist">
              <h4>Interested in Exclusive Articles?</h4>
                <div class="class2">
                  <p><a href="login.html" class="style10">All you need to do is login/register</a></p>
                </div>
            </article>
          </section>
    <section class="wrapper"><h3 class="hidden">If you are seeing this, then the site is losing stability</h3></section>
            </footer>
                                    </body>
    </html>

    Also, what's this about? There's no form at all!
      <body>
            <header>          
                <h1 class="style5">Expertpcguides.com</h1>
              <p class="style6">Technology Explained.</p>
    <select id="alternative_menu" size="1">
                    <option>Home</option>
                    <option>About</option>
                    <option>Contact us</option>
                    <option>Login/Register</option>
                    <option>Forums</option>
    <option>Privacy Policy</option>
                    <option>Disclaimer</option>
                    <option>Legal Notice</option>
                </select>
    By the way, you are going to drive yourself crazy if you don't stop using the Property inspector to style your content -
         <style type="text/css">
    <!--
    .style4 {
      font-size: 20px
    .style5 {color: #0000FF}
    .style6 {
      color: #0099CC;
      font-weight: bold;
    .style9 {
      color: #CCCCCC;
      font-size: 90%;
    .style12 {font-family: Georgia, "Times New Roman", Times, serif; color: #000000; font-size: 120%; }
    .style16 {color: #000099}
    .style45 {font-family: Georgia, "Times New Roman", Times, serif; color: #0000FF; font-size: 120%; }
    .style46 {color: #000000}
    -->
            </style>

  • How to submit a form with checkboxes in a page flow?

    I'm having some trouble with a form that contains several checkboxes, and
    how to submit this form within a page flow...
    I have a JSP page containing a form with N checkboxes. The value and
    checked/unchecked status of each checkbox is generated from parsing an XML
    document. Here is the (simplified) code:
    <%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>
    <netui:form action="doUpdate">
    <x:forEach select="...">
    <input type="checkbox" name="id"
    <x:if ...>checked</x:if> value="<x:out ... />">
    </x:forEach>
    <netui:anchor formSubmit="true" action="doUpdate">Submit</netui:anchor>
    <netui:anchor action="doCancel">Cancel</netui:anchor>
    </netui:form>
    When this form is submitted, the checkbox values are lost -- the following
    code (in the action) produces an empty array:
    String[] prefs = this.getRequest().getParameterValues("id");
    I looked at the <netui:checkbox> tag, but it does not appear to give me a
    way to set the state and value (unless I've missed something).
    Can I submit a form without using a form bean? If I do use a form bean, can
    I set the state and value from my JSP?
    Any suggestions on how to do this (or insights into what I'm doing wrong)
    are welcome...
    -- Craig

    I am new to this, but I think this may solve your problem:
    I am not sure if this is what you are looking for, but you can create a LinkedHashMap
    with the req key/value pairs in the page-calling action in the pageflow and then
    pass that via a getRequest().setAttribute("myCheckboxes",myCheckboxHashMap);
    You can then access it in code using the optionsDataSource portion of the netui:checkBoxGroup
    - ie
    <netui:checkBoxGroup dataSource="{actionForm.thisCheckbox}" optionsDataSource="{request.myCheckboxes}">
    Hope this helps!
    m
    "Craig Coffin" <craig+1268fbec@nfld-dot-com> wrote:
    I'm having some trouble with a form that contains several checkboxes,
    and
    how to submit this form within a page flow...
    I have a JSP page containing a form with N checkboxes. The value and
    checked/unchecked status of each checkbox is generated from parsing an
    XML
    document. Here is the (simplified) code:
    <%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>
    <netui:form action="doUpdate">
    <x:forEach select="...">
    <input type="checkbox" name="id"
    <x:if ...>checked</x:if> value="<x:out ... />">
    </x:forEach>
    <netui:anchor formSubmit="true" action="doUpdate">Submit</netui:anchor>
    <netui:anchor action="doCancel">Cancel</netui:anchor>
    </netui:form>
    When this form is submitted, the checkbox values are lost -- the following
    code (in the action) produces an empty array:
    String[] prefs = this.getRequest().getParameterValues("id");
    I looked at the <netui:checkbox> tag, but it does not appear to give
    me a
    way to set the state and value (unless I've missed something).
    Can I submit a form without using a form bean? If I do use a form bean,
    can
    I set the state and value from my JSP?
    Any suggestions on how to do this (or insights into what I'm doing wrong)
    are welcome...
    -- Craig

  • Acrobat form with submit button

    Have a coldfusion app that includes an acrobat form that contains a submit button.  The button submits the form to another CF page.  I'm making some fixes to this app and need to change where the form submits, currently it's going to production but i need it to go to test.  When I open the form in Acrobat 8 or Livecycle I don't see any script.  Anyone know where to change wheer this form posts?

    Not sure about LiveCycle, but here's how to do it in acrobat.
    1) Right click on Form Button -> Properties -> Actions
    You should see a list of actions associated with the button.  something like:
    - Mouse Up
           Submit a Form
    2) Select on "Submit a Form" and click "Edit" at the bottom of the screen
    3) Edit URL in "Submit Form Selections" window.

  • Form with Submit Button

    I recently purchased the acrobat professional 8 and tried to create forms that people can fill in and submit it to us. I tried email button but for some reason never get the email for the data. I thought about http button, but it need some scripting skill. I have some knowledge in ASP script but never create any script for form submission before. Can anyone show me some sample of how to create the script or point me to the right direction that I could have the submit button feature?
    Also, I seem some forms that can allow reader users to save the data that they type in the form onto their computer, do anyone know how to create a form with this feature?
    Thanks

    Use a regular button and change it's control type to submit. Under the Submit tab type in "mailto:youremailaddress". You can then either choose the Submit As for XML, which will send you the data that you can then import into the form or choose Submit As for PDF and you'll get the entire document.
    Also, open the form in Acrobat, go to Advanced > Enable Usage Rights in Adobe Reader. This will solve your problem.
    *one thing to note, if you ever make changes to your form be sure to do the Enable Usage Rights in Adobe Reader step again.

Maybe you are looking for

  • How do I make a metal effect in illustrator?

    Hello I did a logo for a client and it was built in illustrator. I took it to photoshop and put a metal silver effect on it that looked great but I need to do it in illustrator because the client decided they want to use the metal look 100% of the ti

  • Problems with flash in vista - Not IE RELATED

    Just got a new laptop yesterday with: vista home premium 32 bit amd 64x2 1g ram I like to play poker (just play money) on carbon poker and poker.com I installed the programs and went to play on them. The program loads fine, functions fine in the menu

  • How to enable my ipad air coz of wrong password and Findmy ipad air is on

    How to enable my ipad air because of wrong password and i cannot recover or restore my device coz Find my ipad setting in my device is on. Itunes said this must be off before anything, but i cannot turn it off in setting because device is disable. He

  • BO Generate Emails

    Hi All, We schedule some webi reports and send out the reports by email. Sometimes the reports do not have data return. Are there any methods to generate emails that only the reports contain data? Thanks.

  • Http Response - needing to hide application directory from browser

    Hi, i need to hide the application root directory from the browser, as you can see at these steps example: 1) Http request: www.xxxx.com 2) Apache runs module Alias: redirect www.xxxx.com to www.xxxx.com/somedir/ 3) Apache returns www.xxxx.com/somedi