Hidden text field

I have populated a combo box with contents from LDAP.
I wanted to show a hidden text box when a particular option is selected from the combo box.
Awaiting responses......
Thanks in Advance,
Ranjith

Use AJAX of course. Invoke some action when onchange() event is fired.

Similar Messages

  • Strange behavior with hidden text field for drill down

    Hi All,
    I am pretty sure I know the cause, just not sure how to work around...
    I am trying to create a drill down report just like in the App Dev guide, and I have done everything the same as the example (2 times, once to follow the guide, and now on my app). The only difference is that I am using a text field rather than a numeric field as the link. This shouldn't be a problem (I wouldn't think) except that the text I NEED to use has '<==' in the middle. So when I check my session state var's, this is what I see:
    CHPAG0SC_MAILCDN_000000047_ CHPAG0SC_MAILCDN_000000047_ <==20060525101642
    When what I should see is:
    CHPAG0SC_MAILCDN_000000047_ <==20060525101642
    So I think that I am gettting duplication because of the characters, but again I don't know how to solve it.
    Any thoughts would be appreciated.
    Corey

    Hi Scott,
    I am trying to create a drill down report similar to the one in the app developers guide. I have a query on pg 1 that includes the required text field as the link. When I click the link, I get an error on pg 2 - which is trying to use the value from pg 1. I did check and saw that even though I set this value in session state (I thought that was what happened when I assigned the 'name' and 'value' in the column link), it is passed in the url, which is where I figured it was breaking. As stated, I need to use this text value as it is the only unique key for the data (currently - this is a data validation step (not an ApEx validation), where users are handling issues with data uploaded from a csv).
    My current process is as follows:
    1. User uploads 2 csv's
    2. Proc moves (from wwv_flow_files) and parses csv back into records and inserts into temp (all varchar2) table(s).
    3. User is displayed 3 'reports' - for each type of validation required - from the stage/temp table
    4. User would click on the 'Edit' link (like the drill down sample) to see more details about the record.
    5. Once the user is done with these reports, they would click another button to 'process' the data (move it into base tables)
    Because the text field is always unique, I figured I wouldn't create a sequence for this like I have for the 'base' (destination) tables.
    I didn't know that I was using a 'get' rather than a 'post', but of course it is a link, not a button - so I should ahve known better.
    Is there a way to do this without adding a sequence generated id for each, or is that just the quickest way?
    Thanks again,
    Corey

  • Problem in repeating a subform with hidden text fields.

    Hi,
    Request advise on the scenario below:
    The form consists of one master page and a corresponding page that is flowed. This contains two subforms : One with address fields that are hidden with the subsequent fields moving up, when the previous field is hidden. The layout being :
    Name1
    Name2
    Addrs1
    Addrs2
    Addrs3
    in the absence of anyone of these fields the one below gets moved up. The second subform in the page consists of a flowed suform which gets repeated multiple times and spans across pages as the data overflows. The data binding comes only from one set of data item hence the option for repetition based on each data item seems impractical.
    Is there a way to display the address subform in the multipages created by the overflowing data, at the same position as in the first page? This couldn't be placed in the master page as then , the script for hidden fields doesn't work.
    Thanks in advance..

    Hi,
    Contact me at [email protected] to share a sample PDF.
    I just tried a sample for your requirements and it seems to be working.
    Nith

  • Acrobat javascipt problem with text field

    Hello.
    I work in hospital and I create a PDF with some javascript, to help us working with our patients. This PDF now need some upgrade and I m stuck. Im not a programmer, so its even more difficult to me.
    Let me describe my problem. I have three buttons in my PDF with this code: on mouse up run javascript (I replace actual names in menu with options)
    var cChoice = app.popUpMenuEx
       {cName: "Option1", oSubMenu:
          [ { cName: "A", cReturn: "A" },
            { cName: "B", cReturn: "B"},
            { cName: "C", cReturn: "C" }
       {cName: "Option2", oSubMenu:
          [ { cName: "D", cReturn: "D" },
            { cName: "E", cReturn: "E" },
            { cName: "F", cReturn: "F" }
    if(cChoice != "" && cChoice != null)
    this.SetFieldValues(cChoice);
    else if(cChoice != null)
                 this.print({bUI:true,bSilent:false});
    I also have four text fields in PDF, fields "d1", "d2", "d3" and field "kat".
    Inside document javascript I have setFieldValues script:
    // Place all pre-population data into a single data structure
    var DeptData = { "":{  diagnoza: "", kat: "" },
    "A":{ diagnoza: "A", kat: "KAT III" },
    "B":{ diagnoza: "B", kat: "KAT II" },
    "C":{ diagnoza: "C", kat: "KAT I" },
    "D":{ diagnoza: "D", kat: "KAT III" },
    "E":{ diagnoza: "E", kat: "KAT II" },
    "F":{ diagnoza: "F", kat: "KAT I"}};
    function SetFieldValues(cDeptName) {
        // Populate fields with values from the Department Data Object
        this.getField("d1").value = DeptData[cDeptName].diagnoza;
        this.getField("kat").value = DeptData[cDeptName].kat;
    function SetField1Values(cDeptName) {
        // Populate fields with values from the Department Data Object
        this.getField("d2").value = DeptData[cDeptName].diagnoza;
        this.getField("kat").value = DeptData[cDeptName].kat;
    function SetField2Values(cDeptName) {
        // Populate fields with values from the Department Data Object
        this.getField("d3").value = DeptData[cDeptName].diagnoza;
        this.getField("kat").value = DeptData[cDeptName].kat;
    Now my problem. This code work perfect for my d1, d2, and d3 fields. When nurse click first button and open menu, then select options, the value that she select print in field d1, value from second button print in d2 and value from last button in d3. But each selection has also second value, named "kat". This value must be printed in text field named "kat", but...here is some catch. If all three selected options have different "kat" values - all three values must be in text field "kat". If one or two values are equal, I need that just one of them is printed.
    Something like that:
    If
    "d1" field has "A" value
    "d2" field has "B" value
    and "d3" has "C" value
    then field "kat" has all three kat values.
    but if
    "d1" field has "A" value
    "d2" field has "D" value
    and "d3" field has "E" value
    then field "kat" print only one of two equal (A and B) kat values and E kat value, that is different.
    Anyone understand my bad english and my problem and has a solution for this?

    Use hidden text fields for the various "kat" values ("kat1", "kat2", etc.) and then a separate custom calculation script for the real "kat" field that looks at the values of those fields and decides what value it should have.

  • First Text field in page submits when Enter key is hit. Don't want Submit

    Hi,
    I have searched and can't find this answer I got before...
    The Text field does not have the Submit always when pressed included, just a standard Text Item.
    because it is the first text field in the page.. or maybe it was because its the only text field on the page that causes it to "Submit" the page when the "Enter" key is pressed.
    I do not want the Enter key to Submit the page.
    Was it to add a dummy hidden text field before this text field?

    Awesome... I just found a post also with same answer!
    Thank you very much!
    http://djmein.blogspot.com/2007/04/stop-page-submission-when-enter-is.html

  • Display text fields from check box?

    Hi
    Is there a way to display hidden text fields in a form
    whenever the check
    box is clicked?
    For example I have an option which asks how may we be of
    service to you?
    One option is 'estimates on conveyancing' , once this is
    clicked I need to
    display further text fields (estate agent, name of property,
    price of
    property etc)
    Thanks for any help

    Nope.
    First, I had trouble figuring how to apply the Form Calc to the Button, as opposed to the Button List.
    I actually had to edit the first line in the Script Editor, which seems pretty lame.
    That is to say, I just don't see how to get to the radio button, not the Object named RadioButtonList
    BUT, I can't UNCHECK the field once it's been checked. That is, if I click "on" the Radio Button, it won't revert to unchecked if I try to click it "off".
    In other words, if the person unchecks the Radio button due to some error, I need it to click off and the TextFiled to go back to being hidden.
    Like I said, this can't be that hard, or maybe I'm just missing what you're trying to explain. Any other ideas?
    Steve

  • Hidden/Visible text fields in saved PDF

    I got some very helpful advice yesterday about deleting content from hidden boxes (text fields). I have another related problem that somebody might have an answer for. I have text fields that are hidden or visible depending on selections made in drop-down lists. This is working fine but I've noticed something strange. When a user completes the form, saves it, closes it, and re-opens it--all of the text boxes are visible. Has anyone run across this? If so--is there some script I can add to fix this?
    //Clear out the StaticLocation DropDown list
    StaticLocation.rawValue = "";
    StaticLocation.clearItems();
    switch (this.rawValue)
         case "Top Center  ":
              StaticLocation.addItem("Lower Right");
              StaticLocation.addItem("None");
              break;
         case "Lower Right":
              StaticLocation.addItem("Top Center  ");
              StaticLocation.addItem("None");
              break;     
         case "Top Center":
              StaticLocation.addItem("Lower Left");
              StaticLocation.addItem("None");
              break;
         case "Lower Left":
              StaticLocation.addItem("Top Center");
              StaticLocation.addItem("None");
              break;
    //TextFields 1a-4a
    if (this.rawValue == "Top Center")
         TextField1a.presence = "visible";
    else
         TextField1a.presence = "hidden";
         TextField1a.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2a.presence = "visible";
    else
         TextField2a.presence = "hidden";
         TextField2a.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3a.presence = "visible";
    else
         TextField3a.presence = "hidden";
         TextField3a.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField4a.presence = "visible";
    else
         TextField4a.presence = "hidden";
         TextField4a.rawValue = "";
    //TextFields 1b-4b
    if (this.rawValue == "Top Center")
         TextField1b.presence = "visible";
    else
         TextField1b.presence = "hidden";
         TextField1b.rawValue = "";
    if (this.rawValue == "Lower Left")
         TextField2b.presence = "visible";
    else
         TextField2b.presence = "hidden";
         TextField2b.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3b.presence = "visible";
    else
         TextField3b.presence = "hidden";
         TextField3b.rawValue = "";
    if (this.rawValue == "Lower Right")
         TextField4b.presence = "visible";
    else
         TextField4b.presence = "hidden";
         TextField4b.rawValue = ""; 
    //TextFields 1c-4c
    if (this.rawValue == "Top Center")
         TextField1c.presence = "visible";
    else
         TextField1c.presence = "hidden";
         TextField1c.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2c.presence = "visible";
    else
         TextField2c.presence = "hidden";
         TextField2c.rawValue = "";
    if (this.rawValue == "Top Center  ")
         TextField3c.presence = "visible";
    else
         TextField3c.presence = "hidden";
         TextField3c.rawValue = "";
    if (this.rawValue == "Lower Right")
         TextField4c.presence = "visible";
    else
         TextField4c.presence = "hidden";
         TextField4c.rawValue = "";
    //TextFields 1d-4d
    if (this.rawValue == "Top Center")
         TextField1d.presence = "visible";
    else
         TextField1d.presence = "hidden";
         TextField1d.rawValue = "";
    if (this.rawValue == "Lower Left")
         TextField2d.presence = "visible";
    else
         TextField2d.presence = "hidden";
         TextField2d.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3d.presence = "visible";
    else
         TextField3d.presence = "hidden";
         TextField3d.rawValue = "";
    if (this.rawValue == "Lower Right")
         TextField4d.presence = "visible";
    else
         TextField4d.presence = "hidden";
         TextField4d.rawValue = "";
    //TextFields 1e-4e
    if (this.rawValue == "Top Center")
         TextField1e.presence = "visible";
    else
         TextField1e.presence = "hidden";
         TextField1e.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2e.presence = "visible";
    else
         TextField2e.presence = "hidden";
         TextField2e.rawValue = "";
    if (this.rawValue == "Top Center  ")
         TextField3e.presence = "visible";
    else
         TextField3e.presence = "hidden";
         TextField3e.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField4e.presence = "visible";
    else
         TextField4e.presence = "hidden";
         TextField4e.rawValue = "";
    //TextFields 1f-4f
    if (this.rawValue == "Top Center")
         TextField1f.presence = "visible";
    else
         TextField1f.presence = "hidden";
         TextField1f.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2f.presence = "visible";
    else
         TextField2f.presence = "hidden";
         TextField2f.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3f.presence = "visible";
    else
         TextField3f.presence = "hidden";
         TextField3f.rawValue = "";
    if (this.rawValue == "Lower Right")
         TextField4f.presence = "visible";
    else
         TextField4f.presence = "hidden";
         TextField4f.rawValue = ""; 
    //TextFields 1g-4g
    if (this.rawValue == "Top Center")
         TextField1g.presence = "visible";
    else
         TextField1g.presence = "hidden";
         TextField1g.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2g.presence = "visible";
    else
         TextField2g.presence = "hidden";
         TextField2g.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3g.presence = "visible";
    else
         TextField3g.presence = "hidden";
         TextField3g.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField4g.presence = "visible";
    else
         TextField4g.presence = "hidden";
         TextField4g.rawValue = "";
    //TextFields 1h-4h
    if (this.rawValue == "Top Center")
         TextField1h.presence = "visible";
    else
         TextField1h.presence = "hidden";
         TextField1h.rawValue = ""; 
    if (this.rawValue == "Lower Left")
         TextField2h.presence = "visible";
    else
         TextField2h.presence = "hidden";
         TextField2h.rawValue = ""; 
    if (this.rawValue == "Top Center  ")
         TextField3h.presence = "visible";
    else
         TextField3h.presence = "hidden";
         TextField3h.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField4h.presence = "visible";
    else
         TextField4h.presence = "hidden";
         TextField4h.rawValue = ""; 
    //TextFields 1i-4i
    if (this.rawValue == "Top Center")
         TextField2i.presence = "visible";
    else
         TextField2i.presence = "hidden";
         TextField2i.rawValue = "";     
    if (this.rawValue == "Lower Left")
         TextField1i.presence = "visible"; 
    else
         TextField1i.presence = "hidden";
         TextField1i.rawValue = "";  
    if (this.rawValue == "Top Center  ")
         TextField4i.presence = "visible";
    else
         TextField4i.presence = "hidden";
         TextField4i.rawValue = ""; 
    if (this.rawValue == "Lower Right")
         TextField3i.presence = "visible";
    else
         TextField3i.presence = "hidden";
         TextField3i.rawValue = "";
    ----- form1.#subform[0].VariableLocation::ready:layout - (JavaScript, client) ----------------------
    if (TrimSize.rawValue == null) {VariableLocation.access = "readOnly";}
    else {VariableLocation.access = "open";}
    //1a-4a
    if (VariableLocation.rawValue == null)
         TextField1a.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2a.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3a.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4a.presence = "hidden";
    //1b-4b
    if (VariableLocation.rawValue == null)
         TextField1b.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2b.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3b.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4b.presence = "hidden";
    //1c-4c
    if (VariableLocation.rawValue == null)
         TextField1c.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2c.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3c.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4c.presence = "hidden";
    //1d-4d
    if (VariableLocation.rawValue == null)
         TextField1d.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2d.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3d.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4d.presence = "hidden";
    //1e-4e
    if (VariableLocation.rawValue == null)
         TextField1e.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2e.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3e.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4e.presence = "hidden";
    //1f-4f
    if (VariableLocation.rawValue == null)
         TextField1f.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2f.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3f.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4f.presence = "hidden";
    //1g-4g
    if (VariableLocation.rawValue == null)
         TextField1g.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2g.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3g.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4g.presence = "hidden";
    //1h-4h
    if (VariableLocation.rawValue == null)
         TextField1h.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2h.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3h.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4h.presence = "hidden";
    //1i-4i
    if (VariableLocation.rawValue == null)
         TextField1i.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField2i.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField3i.presence = "hidden";
    if (VariableLocation.rawValue == null)
         TextField4i.presence = "hidden";

    You are not saving the state of the form. You can do this programmatically but there is a facility in Designer that will do it for you. If you open the Form Properties under the File menu then click the Defaults tab, you will see a section called Scripting. In that section make sure that the "Preserve Scripting changes to for when saved" radio button is set to Automatically.
    Paul

  • How to Print All Content hidden in Text Field

    Apologies if this has been answered elsewhere. I can't seem to find a solution that works
    I am trying to get a text field, which is fixed in size on screen and which includes more text than visible (contains + sign in corner) to print all the text within it.
    I'm assuming this can be done and I am simply not producing my form correctly.
    Any help greatly appreciated!
    Ken

    There are some options:
    - You can set the font size to Auto, but then you run the risk of the text being too small.
    - You can set up empty fields at the end of the form and populate them with the text just before printing. That would require a custom-made script.

  • Displaying the value of text field A in text field B

    I have a PDF form with 2 layers. Layer 1 has information, a textfield, and a button. Layer 2 is a certificate design. The user inputs their name in to a textfield called NameEntry.
    When they hit the button, layer 1 disappears -- the instructions and NameEntry box become hidden. Layer 2 is the certificate design and I need a new textfield (which is called NameDisplay) to be populated from inputted information in text field NameEntry.
    The simple answer, I know, is to name both text fields the same. This does not work for me as I need the input textfield to be styled differently (background and border) due to decisions out of my control vs the NameDisplay which will have no background and no border.
    Any ideas? Thanks!

    Use this custom calculation script:
    event.value = this.getField("NameEntry").valueAsString;

  • My calculation "Total" box adds sum of all text fields whether they are visible or not, do I change

    I have check boxes that show and hide text fields. (Thanks to Gilads Java script). In options I have a default value for each text field.
    My "Total" Field field adds all fields even if they are not checked and visible. Need to have it only include them if they are checked and visible.

    You can't attach forms by email, or any other means, so it didn't come through.
    Since your fields have default values and aren't calculated based on the state of the corresponding check box, you will have to use a custom calculation script for the Total field that can check to see if any of the fields are hidden, and if so, don't include their values in the sum. For example:
    // Custom calculation script
    (function () {
        // Set up an array of field names to include in the total
        var aFields = ["text1", "text2", "text3", text4"];
        // Initialize variables
        var i, f, sum = 0;
        // Loop through the fields an calculate the sum
        for (i = 0; i < aFields.length; i += 1) {
            // Get the current field
            f = getField(aFields[i]);
            // Add the value of the current field to the sum if the field is visible
            if (f.display == display.visible) {
                sum += +f.value;
        // Set this field value to the sum
        event.value = sum;
    You can send me a PM if you want help offline.

  • Text Fields Not Showing in Design or Live View

    Hello Everyone,
    I have run into a problem trying to create a simple contact form through Dreamweaver CS6.  I have two text fields for Name & Email, and 1 text area for Comments.  The issue I am running into is that the text fields are not showing in Design or Live view.  I have set-up all variables required for the server for the form to work... but that should not have any effect on the text field showing...  I tried uploading my contact page with the same result of no text fields showing...
    What is really laughable is that the "text area" I placed in my form for Comments shows up in Design & Live view just fine.  I am thinking that I am missing something, but just do not know what exactly.  The form is styled through CSS.
    Here is the form code:
         <div id="CRDForm">
           <form action="http://www.sweetformimi.com/formmail/formmail.php" method="post" enctype="application/x-www-form-urlencoded" name="contact" target="_self" id="contact">
        <input type="hidden" name="env_report" value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT,AUTH_TYPE,REMOTE_USER">
        <input type="hidden" name="recipients" value="[email protected]" />
        <input type="hidden" name="subject" value="Contact Form" />
             <label><p>Your Full Name
               <input name="Name" type="text" id="Name" size="40" /></p>
             </label>
             <label><p>Email
             <input name="email" type="text" accesskey="2" tabindex="2" title="Email" value="Email"></p>
             </label>
             <label>Comments<br />
             <textarea name="comments" cols="40" rows="10" accesskey="3" tabindex="3" title="Comments"></textarea>
             </label>
             <input name="submit" type="submit" accesskey="4" tabindex="4" title="submit" value="submit">
           </form>
        </div>
    Are there other variables I should be thinking about in the rest of my site?  I am using a fluid grid layout.  I have CSS for desktop, tablet, and phone devices.  I also have a primary CSS file that imports all three.  The sites structure was done by using <header>, <article>, <footer>, and of course <div> tags. 
    Has anyone ever experienced the "text fields" not showing up before? Is it a simple fix as reinstalling Dreamweaver CS6?  Finally, another thing I should mention is that I did have a previous version of Dreamweaver on my comp, which was CS3.  I did not uninstall that before installing the newer version.  I assumed (and I could be wrong here) that it would automatically replace the older version.
    I apoligize for it being long winded, but I am looking for some help on this issue...
    Thank You

    Hey thank you osgood for the reply!
    When I look at code for long hours it sort of blurs together, and I miss things... I think that happens to the most of us
    Ya I found what was blocking my text fields in my desktop.css
    I primarily work through code view, and currently working on quite a few projects kind of makes your eyes miss the small errors.
    Thanks again!

  • Duplicate a Text Field on Every Page of a Document?

    Today I wrote my first vb.net/adobe app.  I managed to open the pdf doc in adobe and create a named text field.  I managed to insert a java script that gets the current date when the document is open and updates the text field.  I would like to duplicate the text field on all pages of the document.  Manually, I can right click on a text field and select duplicate.  I don't see a property or method that allows me to program this.  The field property "page" appears to be read only.  any help would be appreciated.  thanks.
    page
    The page number or an array of page numbers of a field. If the field has only one appearance in the document, the page property returns an integer representing the 0-based page number of the page on which the field appears. If the field has multiple appearances, it returns an array of integers, each member of which is a 0-based page number of an appearance of the field. The order in which the page numbers appear in the array is determined by the order in which the individual widgets of this field were created (and is unaffected by tab-order). If an appearance of the field is on a hidden template page, page returns a value of -1 for that appearance.
    TypeInteger | ArrayAccessRFieldsallExample 1Determine whether a particular field appears on one page, or more than one page.var f = this.getField("myField");
    if (typeof f.page == "number")
    console.println("This field only occurs once on page " + f.page);
    else
    console.println("This field occurs " + f.page.length + " times);

    I also tried the brute force method of moving from page to page and creating a text field on each page.   I used pageNum to changes the page, but, adobe didn't seem to recognize that.  I saw the page change on the screen, but, all of the textfields were created on the first page!

  • How do you add a scroll bar to a scrolling text field in a folio?

    I've created iPhone and iPad folios with multiple pages. There are scrolling text fields on each page. The fields scroll as designed, but the scroll bars on the  text fields only appear while actually scrolling. Is there a way to have them always visible so the user knows there is more hidden info? The only bars that are constantly visible are the page scroll bars.  Thanks!

    Why is your content pane null? I thought the content pane was the top-level in all windows? If you want complete control over the location of a list box, you want to set the layout of the content pane to null... the way I almost always do this is the other way around, to create my own panel and use setContentPane instead:
    JPanel content = new JPanel(null);
    JScrollPane scroll = new JScrollPane(myListBox);
    scroll.setBounds(380, 10, 500, 500);
    content.add(scroll);
    setContentPane(content);

  • How to print hidden text in answer box

    How can you print the hidden text in answer boxes on PDF forms?

    I am not sure I understand your question. Are you importing a PDF with Hidden Fields into FormsCentral?
    If this is the case FormsCentral ignores hidden fields and doesn't create column in the response table for those.
    Gen

  • How to show a text field based on what is entered in a date field

    Hi there LiveCycle experts!
    I have a form with a text field that I want to show only if the value of the previous date field once entered is less than 1 month from today?
    Any help appreciated, been researching in vain for hours!!!
    Sarah

    Wow Steve - thanks so much this is so exciting I just love learning these new scripts.
    I assume I need to make the text field 'Hidden' - ?
    I seem to be struggling a little to get it working - are you able to have a quick squizz at my document - it is in the very early stages!
    Regards,
    Sarah Milne
    FACEBOOK : Join our  'BritBound Social Events' Group on Facebook to receive details of forthcoming social events...click here to join. 
    For a sociable & stress free arrival experience!
    BritBound London Office: Britain & London Visitor Centre, 1 Regent Street, London, SW1Y 4XT.
    Tel UK: | 0845 450 3536 | From OS + 44 (0) 20 7808 3815
    Tel OZ: | Sydney: (02) 8003 7651  | Melbourne: (03) 9005 8304 | Brisbane: (07) 3102 9766
    Tel NZ: | Auckland: (09) 889 3175 | Wellington: (04) 889 2015   | Christchurch: (03) 669 2032
    Website:        www.britbound.co.uk
    E-mail:           [email protected]
    Click Here to find out more about: | UK VISAS  | MOBILE PHONE CONTRACTS FOR NEW ARRIVALS TO THE UK  |  UK ACCOMMODATION  |  AIRPORT TRANSFERS  |  UMBRELLA COMPANIES   |  DISCOUNTED INTERNATIONAL BANK TRANSFERS  |  SOCIAL EVENTS   |  TAX REFUNDS  |  NATIONAL INSURANCE (NI) NUMBERS
    Disclaimer: The information contained in or attached to this message is intended only for the people it is addressed to. If you are not the intended recipient, any use, disclosure or copying of this information is unauthorised and prohibited. This information may be confidential or subject to legal privilege. BritBound cannot accept liability for any virus damage caused by this message. This documentation is for your general information, and is not to be construed as advice. Clients should not act on the information contained herein alone, and should seek independent advice if necessary.

Maybe you are looking for

  • Macbook pro 13 in 2010 not charging?

    hi! i recently bought a macbook pro 2010 around a month ago, put of no where it stopped charging and i didn't realize until after my laptop had already died, i had the charging port replaced thinking that could be the problem but sure enough it still

  • Can I use adobe reader with my iPad

    Can I use adobe reader on my iPad

  • Update Rule Routine not deleted properly

    Hi all I have deleted a routine from an update rule, removed the key figure from the infoprovider and reactivated both the ODS and the update rule. The update rule therefore no longer contains the datafield. Unfortunately the the code for the routine

  • SQL Server CLR SharePoint Interface for Sharepoint 2013

    Hello everybody. Is the project http://archive.msdn.microsoft.com/SqlClrSharePoint actual to use with Sharepoint 2013 + SQL Server 2012 SP1? Sergey Vdovin

  • Wake sleep failure mac book pro retina mid 2012

    I have updated to OS X 10.10.1 and still experience wake sleep failures. The only time my mac book pro has recovered from sleep 100% was the period between purchase date and the first software update. I am somewhat annoyed that Apple has managed to b