CFGIRD and hidden form inputs

Hi,
I am using a cfgrid in CF8 bound to a cfc. The cfgrid of
course has to be in a form. The question is, if I am using an
"href" on one of the cfgridcolumns (i.e. a user clicks on a
link/data in the grid which opens a new webpage with an attached
hrefkey), should any hidden form fields within the same form
(<input type="hidden"....>) be posted to the new page as
well?
If this is not possible how else can I get other variables
not related to the grid results posted to a new page?
Thanks.

Your actions specify session scope - that means it should retain the form in session, and keep your values. That looks good.
You have a 2-step 'wizard' process.
The question - what does your reset() method on your action form do?
If it clears all the fields, that explains what happens to the values.
The "reset" method gets called every time you access the action form.
In your case, you only want to "reset" the action form when you submit from page1, not from page2.
Well thats my hypothesis anyway.
Hope this helps,
evnafets

Similar Messages

  • JDev10g and ADF/Struts input form errors

    I followed a demo for creating an input JSP form from Business Components. However, although I can create and run a report or read-only form without a problem, I cannot create and run an input form at all as I keep getting the following error:
    javax.servlet.jsp.JspException: No getter method for property FirstName of bean org.apache.struts.taglib.html.BEAN
         at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:968)
    Any ideas?

    Justin,
    This usually happen because the data binding called FirstName cannot be found in the binding container associated your JSP.
    The binding container associated with your page is most likely the name of your page with UIModel.xml.
    You can see the list of bindings available in the binding container by selecting the DataBinding.cpx file in the Navigator and look at the Struture Pane.
    The FirstName binding might not be thre of the wrong binding container may be associated with the page.

  • How do link form input and a datatable that are on the same page?

    I am real new to JSF, so I'm having the following issue...
    I created a demo app that will pull records from from a database and display them in a datatable. I hava a backingbean for this process that works great with hardcoded data.
    Now, I want to add a form to this page and use the form input to drive the results in the datatable. I have created my form and used a separate backingbean that is essentially a JavaBean for all the form input.
    My question is how do I integrate the submit button from this new form to feed the call that is used for the datatable?
    Here's is a snippet of the pertinent code from the JSP:
    <TABLE border="0">
                   <TBODY>
                        <TR>
                             <TD>
                             <P>Correlation ID:</P>
                             </TD>
                             <TD><h:inputText styleClass="inputText" id="correlationId"
                                  value="#{LogMessageBean.correlationId}"></h:inputText></TD>
                             <TD width="121"></TD>
                             <TD width="153">
                             <P>Workflow ID:</P>
                             </TD>
                             <TD width="158"><h:inputText styleClass="inputText" id="workItemId"
                                  value="#{LogMessageBean.workItemId}"></h:inputText></TD>
                        </TR>
                   </TBODY>
              </TABLE>
              <BR>
              <div align="center">
              <h:commandButton value="Search" actionListener="#{LogValueListHandler.search}" action="#{LogValueListHandler.result}"/>
              <h:commandButton value="Reset" onclick="reset()"/></div>
              <H5>Application Logging Results</H5>
              <t:dataTable value="#{LogValueListHandler.logList}" var="feed"
                   rowClasses="oddrow, evenrow" headerClass="table">
                   <t:column>
                        <f:facet name="header">
                             <h:outputText value="ClassName" />
                        </f:facet>
                        <h:outputText value="#{feed.className}" />
                   </t:column>
                   <t:column>
                        <f:facet name="header">
                             <h:outputText value="MethodName" />
                        </f:facet>
                        <h:outputText value="#{feed.methodName}" />
                   </t:column>
    ...Thanks!

    Locutus_1,
    I'm working on the same sort of app - A data table where the record selected is displayed in a form below the datatable and may be edited and saved.
    I've included a checkbox in the datatable so that the user can indicate which record is to be displayed and edited. The have everything working, except that I cannot get the checkbox click event passed to the backing bean correctly (critical to the entire operation). When I have this working, I'll post the code.
    This solution does not have a direct link between the datatable model and the data handled by the form. The backing bean code does this. If there was a solution where the two could be linked directly via JSF, I'd be very interested in it.
    Werner

  • How to populate a hidden form field with a value passed from another page

    I'm using PHP/MySQL and DW CS4.
    I am trying to obtain the external key for a table, and include it as a hidden field in a form for a second table.
    The user selects a "need" from a list and is taken to a new page which displays the need selected in the prior page and a form the user can fill out with details of his offer, there should also be a hidden field in this form that contains the index to the needs table, this hidden field holds the external key. Most of the code is working, except for populating the hidden field with the external key. I have proven(by printing it to the screen) that I have obtained the external key and stored it in a variable ($saveNeedId) . What I'm unable to do is assign this variable to the hidden field in the form I'm about to store in a table. Sometimes I get zero and sometimes I get the index to the first need in the table. This ought to be simple but I can't get it to work, I must be missing something obvious - still very new to PHP.
    Here's the code that sets up the variable and prints it to the screen for test purposes
          $saveNeedId = "-1";
              if (isset($_GET['needId'])) {
                $saveNeedId = $_GET['needId'];
                print $saveNeedId;
    Here's the code that sets up the hidden fields in the form, the one I'm trying to set up is the first one, needId
         <input type="hidden" name="needId" value="<?php echo $row_rsNeedsUnmet['needId']; ?>" />
         <input type="hidden" name="offerId" value="" />
         <input type="hidden" name="MM_insert" value="form1" />
    The page where the user sees the list of needs is here www.hollisterairshow.com/weneed.php
    I'd really appreciate sone help with this, I've tried all combinations of double quotes, percent signs and nothing works...sigh.
    Tony

    Here's the code that sets up the variable and prints it to the screen for test purposes
          $saveNeedId = "-1";
              if (isset($_GET['needId'])) {
                $saveNeedId = $_GET['needId'];
                print $saveNeedId;
    Here's the code that sets up the hidden fields in the form, the one I'm trying to set up is the first one, needId
         <input type="hidden" name="needId" value="<?php echo $row_rsNeedsUnmet['needId']; ?>" />
         <input type="hidden" name="offerId" value="" />
         <input type="hidden" name="MM_insert" value="form1" />
    <input type="hidden" name="needId" value="<?php echo $_GET['needId']; ?>" />
    I looked at your page. It looks like you figured it out.

  • How to make form input value a dataset value?

    Have a form and one hidden field, i want the value to come from
    a dataset.
        <input name="buyerbid" type="hidden" id="buyerbid" value="<?php  { ?> echo '<div spry:region="ds3" class="StackedContainers">
    <div spry:repeat="ds3" class="RowContainer">
    <div class="RowColumn">{column0}</div>
    </div>
    </div>' ;
    <?php } ?>" /> 
    The Spry is the
    <div spry:region="ds3" class="StackedContainers">
    <div spry:repeat="ds3" class="RowContainer">
    <div class="RowColumn">{column0}</div>
    </div>
    </div>
    Spry dataset renders correctly in a div on the page, but can't get the same value in the form input value?
    thanks for your help,
    Jim Balthrop

    thanks for your help.
    The php i knew was the wrong code.
    the spry region not surrounding the form was the answer.
    so i did it this way and it worked.
    <div spry:region="ds4"><form method="POST" name="client_bid" id="client_bid">
        <input name="vehicle_ID" type="hidden" id="vehicle_ID" value="<?php echo $row_rs_vehicle['vehicle_ID']; ?>" />
        <input name="buyer_ID" type="hidden" id="buyer_ID" value="<?php echo $row_rs_login['client_ID']; ?>" /> 
        <input name="auction_ID" type="hidden" id="auction_ID" value="<?php echo $row_rs_auction['auction_ID']; ?>" />
        <input name="buyerbid" type="hidden" id="buyerbid" value="{ds4::column0}" />
        <input name="submitbuyer" type="submit" id="submitbuyer" value="Submit Bid">
      </form></div>
    thanks again.
    -Jim Balthrop

  • Hand Coded Contact and Feedback Form

    Hi All,
    Up until today, I have been using a Contact and Feedback Form from http://www.freedback.com for my website.
    I do not want to be reliant on a company for this any longer so I have hand coded a form in the html snippet in iWeb that I am very pleased with.
    I want to have the contents e-mailed to me and I have set the form method to "get". Do I need to include my e-mail address under the action section, so the action is to send the contents to my e-mail address?
    Also, how do I input the code to re-direct people to a Thank You page on my website after submitting the form? I had done this at Freedback, but this was done through their website.
    I am not using MobileMe, rather I upload to my own hosting space through http://www.daily.co.uk.

    Here's an example of one of my pathetic efforts...
    http://www.cosmystic.com/Contact.html
    Here's the code. You obviously need to change [email protected] with your own email!
    This is set up in your server control panel under email. The email address you choose can then be forwarded to your Mac mail by changing "Mail Box" to "Forward".
    I use Host Excellence and I think you use GoDaddy ??? - so maybe the method is different. I am assuming that GoDaddy has form mail and CGI.
    <html>
    <head>
    <title>Mailform example</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body>
    <form name="formmail" action="/cgi-bin/formmail/formmail.cgi" method="post">
    <input type=hidden name="recipient" value="[email protected]">
    Artist/Band:
    <input type=text name="Artist/Band" size="45" value="">
    Your Name:
    <input type=text name="realname" size="45" value="">
    Your Email Address:
    <input type=text name="email" size="45" value="">
    Information Required:
    <input type="checkbox" name="option1" value="Recording"> Recording
    <input type="checkbox" name="option2" value="Production"> Production
    <input type="checkbox" name="option3" value="Website Design"> Website Design
    <input type="submit" value="Send Email"> <input type="reset" value="Reset Form">
    </form>

  • Sending Multiple CMDs in a hidden form

    Because of the 256 character restriction of the browser URL I'm trying to submit a hidden form to apply filter values and multiple commands to my web application.  In my example below, when I submit the form the first filter is applied (with the 2 filter values I have defined) but I can't figure out how to submit the CMDs after that.  I need to be able to submit multiple commands (swapping the axes, applying drilldowns) in one sequence to the same data provider.  Can anyone please help me with the syntax for doing that?
    <span style="display:none; visibility:hidden">
    <form name="MyCommand" method="POST" action="<SAP_BW_URL>">
    <input type="hidden" name="DATA_PROVIDER" value="KPM">
    <input type="hidden" name="FILTER_IOBJNM" value="0FISCPER">
    <input type="hidden" name="FILTER_VALUE_1" value="H12004011">
    <input type="hidden" name="FILTER_VALUE_2" value="H12004012">
    <input type="hidden" name="CMD1" value="SWITCH_AXES">
    <input type="hidden" name="CMD2" value="EXPAND">
    <input type="hidden" name="IOBJNM" value="ZPLANT">
    <input type="hidden" name="DATA_PROVIDER" value="KPM">
    </form>
    </span>

    Hi,
    span style="display:none; visibility:hidden">
    <form name="MyCommand" method="POST" action="<SAP_BW_URL>">
    <input type="hidden" name="DATA_PROVIDER" value="KPM">
    <input type="hidden" name="FILTER_IOBJNM" value="0FISCPER">
    <input type="hidden" name="FILTER_VALUE_1" value="H12004011">
    <input type="hidden" name="FILTER_VALUE_2" value="H12004012">
    <input type="hidden" name="CMD1" value="CMD=SWITCH_AXES&DATA_PROVIDER=KPM">
    <input type="hidden" name="CMD2" value="CMD=EXPAND&IOBJNM=ZPLANT&DATA_PROVIDER=KPM">
    </form>
    </span>

  • Getting two session varibles into one hidden form field

    In a hypothetical exaple, if my first session variable is kt_user_name and it's value is bestperson, and my second variable session is kt_exerreference and it's value is ex1a, I'd like have the value submitted in the hidden form field to be bestpersonex1a (without any spaces if possible). This is the code that I have for the hidden form field that submits the server variables:
    <br />
    <br />
    <form>
    <input type="hidden" name="exerreference" id="exerreference" value="<?php echo $_SESSION['kt_user_name'].$_SESSION['kt_login_user']; ?>" />
    <br />
    <br />But the form also has a php section above the head that seems to add the values to the databse. Here is the beginning of the code with the the first 4 values:
    <br />
    <br />// Add columns
    <br />$ins_exer1-&gt;setTable("exer1");
    <br />$ins_exer1-&gt;addColumn("user_name", "STRING_TYPE", "SESSION", "kt_user_name"."kt_login_user");
    <br />$ins_exer1-&gt;addColumn("exerreference", "STRING_TYPE", "SESSION", "kt_user_name");
    <br />$ins_exer1-&gt;addColumn("Shapes_present_with_target", "STRING_TYPE", "POST", "Shapes_present_with_target");
    <br />
    <br />My question is how do I also configure the code in the 2nd string of this "Add Columns" code to insert both server variables? When I put one server variable as the value in this code (0n line 2), it only inserted the one session varialbe value (not 2 as are in the form field). As you can see, I currently have "kt_user_name"."kt_login_user" which is givig me server errors.
    <br />
    <br />Here's another idea that didn't work yet:
    <br />
    <br />// Add columns
    <br />$user = $_SESSION['kt_user_name'].$_SESSION['kt_login_user'];
    <br />$ins_exer1-&gt;setTable("exer1");
    <br />$ins_exer1-&gt;addColumn("user_name", "STRING_TYPE", "SESSION", "$user");
    <br />$ins_exer1-&gt;addColumn("exerreference", "STRING_TYPE", "SESSION", "kt_user_name");
    <br />$ins_exer1-&gt;addColumn("Shapes_present_with_target", "STRING_TYPE", "POST", "Shapes_present_with_target");
    <br />
    <br />Any ideas on the correct syntax?
    <br />
    <br />Thanks for any help.</form>

    Günter,
    <br />
    <br />I think I did as you suggested. I put this as the form field:
    <br />
    <br />
    <form>
    <input type="hidden" name="exerreference" id="exerreference" value="<?php echo $_SESSION['kt_user_name']; ?><?php echo $_SESSION['kt_login_user']; ?> <br />" />
    <br />
    <br />and changed back the Add columns section to this:
    <br />
    <br />// Add columns
    <br />$ins_exer1-&gt;setTable("exer1");
    <br />$ins_exer1-&gt;addColumn("user_name", "STRING_TYPE", "SESSION", "kt_user_name");
    <br />$ins_exer1-&gt;addColumn("exerreference", "STRING_TYPE", "SESSION", "kt_user_name");
    <br />
    <br />The form does submit now, but only the kt_user_name server varible is showing up in the exerreference field of the databaswe, not also the kt_login_user server variable.
    <br />
    <br />Any ideas on what to do to get it working right? Do I need to modify the exerreference string in the Add columns section?
    <br />
    <br />Thanks - Dale</form>

  • XSLT & form input elements

    How do I read hidden type input elements sent by a previous from page in a XSLT page with HTML stylesheets.

    Hi,
    I am sure I wasnt clear at all with what I needed in my previous post but the main problem is I cant read in some values from a URL in my XSLT page.
    This is the URL which starts the process
    http://localhost/reservation/custlogin.xslt?AId=2&FId=3&FStart=6/28/2001+22:30:0
    This is my custlogin.xslt code
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" media="Mozilla" href="ticketreservHTML.xsl"?>
    <index xmlns:xslt="urn:oracle-xsql">
    <topTitle>
    Login Screen
    </topTitle>
    <pageTitle>Ticket Master</pageTitle>
    <form action="/ticketmaster/ticketbooking.xsql" method="get">
    <field name="AId" type="hiddenField">
    <value>{@AId}</value>
    </field>
    <field name="FId" type="hiddenField">
    <value>{@FId}</value>
    </field>
    <field name="FStart" type="hiddenField">
    <value>{@FStart}</value>
    </field>
    <field name="Name" type="textField" case="U">
    <Prompt>Your Name</Prompt>
    </field>
    <sendRequest type="button" label="Sign in"/>
    </form>
    </index>
    Now in my xsl stylesheet, element "field name="AId"" is mapped to HTML tag <input type="hidden" name=AId value=...>
    I hoped to have the value for "AId" and the others from the URL in the "value" attribute, so that I could pass them all into the page specified by form action.
    But the value field is empty and not getting populated with the values from the URL.
    Can someone please assist and tell me how to pass the url params to the next page.
    Cheers
    John

  • Testing Hidden FORM~

    I am testing how hidden form works and i am stuck.
    i am trying to have a hidden form which i can set a boolean value.
    The following code wont compile because the following code is on the same page and the user have no time to submit the hidden form value.
    Is there a way to solve this?? or do i NEED to put the hidden form on a different page?
    Thank you for your attention
    <FORM METHOD="POST" ACTION="Getfamiliar.jsp">
    <input type="hidden" name="hello" value="1">
    <input type="submit" name="submit" value="submit">
    </FORM>
    <% // true false
        boolean hello = (boolean)resquest.getParameter("hello");
        out.println(request.getParameter("hello"));
        if ( hello ) {
             %>
            <P>Hello, world true
            <%
        } else if ( hello == false){
            %>
            <P>Goodbye, World false
            <%
    %>null

    It's blatantly obvious why the JSP isn't compiling.
    boolean hello = (boolean)resquest.getParameter("hello");Not only are you typecasting a String to a boolean (impossible), but the code also contains a typo (should be request).
    Now what you want is that the result of the form submit is only displayed when the form was actually submitted. So turn it into something like this:
    <%
    String hello = request.getParameter("hello");
    if(hello != null){
    if("1".equals(hello)){
    %>
    <p>Hello, world true
    <%
    } else {
    %>
    <p>Goodbye, world false
    <%
    %>

  • Preview form input

    Can anyone tell of a not too advanced way of enabling users
    to preview the question that they have filled in the Question
    textarea field before they submit the form? I would like it to work
    similar to clicking the preview button in this forum. thanks
    jim

    it is really simple, like Ian said.
    on your form's action page, assuming you use method="post"
    for your
    form, all form fields' values are available in the FORM
    scope. so if you
    had a field named question (<input type="text"
    name="question" ...>) on
    the action page you can access its value via #form.question#.
    you intermediary (preview) action page should create a form
    with all
    hidden fields to store all data passed from the original
    form. the
    easiest way to do it is to loop over the #form# collection or
    #form.fieldnames# list (which is a comma-delimited list of
    all field
    names from your form) and create hidden input fields of same
    names with
    corresponding values.
    something like this should do the trick:
    <cfoutput>
    <form action='finalactionpage.cfm' method='post'>
    <cfloop list="#form.fieldnames#" index="fieldname">
    <input type='hidden' name='#fieldname#'
    value='#form[fieldname]#'>
    </cfloop>
    </cfoutput>
    then display the question for review using
    <cfoutput>#htmlcodeformat(form.question)#</cfoutput>
    or something
    similar, keeping in mind that line breaks from a simple
    textarea will
    not be visible in html output (thus i used htmlcodeformat()
    to preserver
    them above). you can alternatively replace all
    #chr(13)&chr(10)# in the
    question's text with <br> using replace() function. or
    do whatever else
    you want.
    add a submit button which will submit the hidden form to its
    fianlactionpage.cfm and you are done.
    hth
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • HTML special characters in form input

    In my site I store form input in my database. Before I store
    the data, I parse out smart quotes, en dashes, and other extended
    special characters and convert them into HTHML quivalents such as
    &#8217;
    All is well and good until the user goes to edit their info.
    In my form these characters show up in my <input> tags as
    their long-winded HTML equivalents, such as &#8217; instead of
    a smart apostrophe.
    Is there any way to convert these back to the special
    characters from the HTML on the form input text fields so that
    users can edit them without being confused?
    Thanks.

    Hmmm, well I ran the MX 6.1 updater and installed the two hot
    fixes that had to do with null pointer exceptions and it still does
    not work.
    Here is the detailed error I'm getting, if it helps. Any more
    ideas? Thanks again for the help, I'm really stuck on this one...
    The system has attempted to use an undefined value, which
    usually indicates a programming error, either in your code or some
    system code.
    Null Pointers are another name for undefined values.
    The error occurred in C:\Inetpub\wwwroot\store\index.cfm:
    line 1
    1 : <cfquery name="getBooks" datasource="#dsn#">
    2 : SELECT *
    3 : FROM products
    Please try the following:
    * Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    * Search the Knowledge Base to find a solution to your
    problem.
    Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
    rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7
    Remote Address 127.0.0.1
    Referrer
    Date/Time 09-Oct-07 02:20 PM
    Stack Trace
    at
    cfindex2ecfm1770128649.runPage(C:\Inetpub\wwwroot\store\index.cfm:1)
    java.lang.NullPointerException
    at coldfusion.sql.QueryTable.populate(QueryTable.java:260)
    at coldfusion.sql.QueryTable.populate(QueryTable.java:159)
    at coldfusion.sql.Executive.getRowSet(Executive.java:505)
    at coldfusion.sql.Executive.executeQuery(Executive.java:974)
    at coldfusion.sql.Executive.executeQuery(Executive.java:886)
    at coldfusion.sql.SqlImpl.execute(SqlImpl.java:236)
    at
    coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:447)
    at
    cfindex2ecfm1770128649.runPage(C:\Inetpub\wwwroot\store\index.cfm:1)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:107)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
    at
    coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:24)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
    at
    coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.CfmServlet.service(CfmServlet.java:105)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:249)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:348)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:294)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

  • Preview and Print Form before submitting

    I have created a form. The client would like the person who
    just filled it out to be able to preview and print it prior to
    submitting or even after submitting. Would this be part of the form
    mail script? Does anyone know the PHP scripting code?
    Thanks!

    Form page submits to a preview page that parses the form
    variables from the
    POST array, places them on the page, AND loads hidden form
    fields with the
    corresponding data. The client may print this page using FILE
    | Print. To
    accept the data shown there, the client would click on an OK
    button that
    submits the form's hidden fields to the PHP processing
    script.
    To make this happen you would have to know how to a) parse
    the data from the
    $_POST array on the confirmation page and display it on the
    page, and b)
    load the hidden fields for ultimate submit to the PHP
    processing script.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "RichyZee" <[email protected]> wrote in
    message
    news:gd4vpt$63v$[email protected]..
    >I have created a form. The client would like the person
    who just filled it
    >out
    > to be able to preview and print it prior to submitting
    or even after
    > submitting. Would this be part of the form mail script?
    Does anyone know
    > the
    > PHP scripting code? Thanks!
    >

  • Reader crashing on iPad and iPhone forms

    I'm using iOS 6.1.2. The most recent update that allowed for smart zoom in some text boxes on fillable forms, brought with it some sort of bug where if you zoom into the form fields and try to input information, the reader crashes.
    It's happening on both iPad and iPhone
    I have 40 people using this form daily for therapy visit billing. It has been fine until the update, in terms of not crashing. Suddenly the one thing we needed fixed was the smart zoom, and once that update came out, I encouraged everyone to update. Now no one can use their forms at all!
    Fix coming soon, I hope???
    Amanda

    Hi Amanda,
    Thanks for sending the two test files.
    For Therapy Visit Note.pdf -> I could reproduce the crash, by zooming in and then input text in big boxes. We are tracking it through internal bug and you might see the fix in one of the future updates.
    For Time Sheet BLANK open.pdf -> I could not reproduce the crash, could you please mention steps to reproduce it.
    -Charu

  • ANN: 1/2-hr webinar (free), June 5 -- Enable and encourage user input in PDFs (viewed with Adobe Rea

    Enable and encourage user input in PDFs (viewed with Adobe Reader)
    with FrameMaker-to-Acrobat TimeSavers + Form Assistant
    Half-hour webinar (free; no fluff, no hype, no nonsense)
    Wednesday, June 5, starting 9am PDT
    Register at: https://www3.gotomeeting.com/register/157658438
    Enabling PDFs for various types of user input can strengthen the interaction between users and the content, and improve satisfaction due to greater user involvement/control. In addition, designated avenues for user input can contribute to documentation quality and provide outlet for frustration, for example by sending inputs regarding the documentation or the product directly from within the PDF.
    Techniques demonstrated in this webinar include features that are all embedded in PDFs that are viewed with the free Adobe Reader:
    • text fields where users can record data values and options
    • checkboxes to track progress
    • page marks and notes (optionally e-mailed)
    • embedded grading/feedback forms
    • storing of useful search queries within the PDF for future use
    Shlomo Perets
    MicroType, http://www.microtype.com
    FrameMaker/Acrobat/Captivate training & consulting • FM-to-Acrobat TimeSavers/Assistants

    https://crash-stats.mozilla.com/report/index/bp-0a0b872f-5127-4ee1-a355-ca3cb2120721
    https://crash-stats.mozilla.com/report/index/bp-9cd87dd7-205f-4844-9e6d-3ce262120721
    https://crash-stats.mozilla.com/report/index/bp-8c07c846-b2ed-4535-8db4-4ee072120720
    https://crash-stats.mozilla.com/report/index/bp-f29a89ed-f8b1-4a62-ba3e-983e22120720
    https://crash-stats.mozilla.com/report/index/bp-e16d2b91-0f7d-4e5a-9e25-255852120718
    https://crash-stats.mozilla.com/report/index/bp-1226c709-5f87-41c6-95d3-4310d2120718
    https://crash-stats.mozilla.com/report/index/bp-4de2a0da-dd36-4ec8-8e53-c42742120714
    https://crash-stats.mozilla.com/report/index/bp-e16d2b91-0f7d-4e5a-9e25-255852120718
    https://crash-stats.mozilla.com/report/index/bp-4de2a0da-dd36-4ec8-8e53-c42742120714
    https://crash-stats.mozilla.com/report/index/bp-eac1c5a5-2dce-4415-b645-07a1f2120714
    https://crash-stats.mozilla.com/report/index/bp-1ede5bd3-8c72-4362-8d79-4f29c2120714
    https://crash-stats.mozilla.com/report/index/bp-d4fd5dae-dacd-45f8-9549-2c3702120722
    https://crash-stats.mozilla.com/report/index/bp-ca510991-de29-44b3-be02-0255a2120722
    https://crash-stats.mozilla.com/report/index/bp-8600c221-3fd3-4eaa-a5af-a602b2120722
    With Hardware Accelaration in Flash turned off. Still crashing.

Maybe you are looking for

  • What's wrong with my hyperlinks from Excel?

    I'm creating a table of documents in Excel 2010, with hyperlinks in cells to the documents. I need to keep the documents as read-only, so I've pdf'd them, but now opening each one takes about 2 minutes. During the process I receive the message: 'Micr

  • External Hard Drive choice help

    I need to upgrade my equipment this year as CS5 and LR3 start getting real slow on my iMac 2.8 ghz intel dual with 4 GB RAM (maxed out) Even with LR set to 32bit. Even getting a new system, it may not be a bad idea to have a dedicated scratch disk. I

  • Viewing the flat file in JMS Receiver???

    How can i see the Flat file generated  after content conversion by JMS Receiver channel in a in a  ECC->PI->JMS scenario. I have a JMS Receiver channel connecting to WMS system , how can i see the flat file produced just after the JMS adapter's conte

  • Need a good Desktop HD for Time Machine

    I'm in search of a good Hard Disk for my iMac that will be used solely with Time Machine. I recently purchased (and returned) a LaCie P'9321 due to it incompatibility with a Mac. So I'm looking for a HD that will give me no problems and is in the ran

  • Is there a tool that validates Iphone backups?

    My inone was backed up to tehcloud and to my local machine.  When the update to 6.1.4.1 falied i tried to restore my phone.  The  restore from the Comupter failed.  I then reset my phone to factor default and tried to restore from the cloud.  This fa