Drop-down list cut off

Hello,
I am using LiveCycle Designer 7.1 and I have a problem with a drop-down list in a dynamic form.
The list is at the end of the page and has got lots of items, so when the user tries to scroll down the list the first time it is cut. The next times the list drops down the page and goes to the following page but only items on the page of the drop down can be selected using the mouse.
The only two walk around I found are
1) making the form static (but in this case I cannot use dynamic fields anymore, and I need them)
2) force the user to go down the list with the arrows...
I have tried this in an empty form, just to be sure that it is not a problem caused by scripts or other objects.
Please let me know if you have the same problem or if I made something wrong!

This is an example of the form:
https://share.adobe.com/adc/document.do?docid=e23eead9-a31f-11dc-8fe2-d702873d34e2
Please let me know if it works and what version of the Reader are you using.
Thank you very much!

Similar Messages

  • Drop-down menu cut off by Flash component

    Hi,
    I am using Flash CS3.
    I have a drop-down menu and a Flash component immediately
    below it. When I hover over the menu item, it opens downwards but
    gets cut off by the Flash component.
    This doesn't happen if I replace the Flash component with a
    picture.
    Any advice what could be done will be much
    appreciated.

    Adding parameter wmode="transparent" to both Flash parameter
    tags and embed tag solved this issue for me.

  • select Tag Mozilla cuts off at 20 IE6 cuts off at 30 We are expecting 30 more lines in drop down list without scrollbar.

    <select> Tag Mozilla cuts off at 20 IE6 cuts off at 30 We are expecting 30 more lines in drop down list without scrollbar.

    it has been answered

  • All drop down lists flicker on and off while typing or right clicking.

    All drop down lists in Firefox, whether it's the menu drop downs, the autocomplete drop downs in the URL bar or the Search field, or even autocomplete drop downs in website form fields, flicker on and off as I type, or when I'm right clicking a link to open in new window or trying to copy a link. I can sometimes get what I want by waiting for it to flicker on and clicking at just the right moment, but it often doesn't work at all. I have a fresh install of Firefox 13.0.1 with no running add ins, plugins or other 3rd party tools. (The troubleshooting info says I have the Adobe Create PDF Extension enabled, but it's not)
    None of the suggested fixes I've found in the forums seem to apply here, cause they're all related to add-ins that I don't have.
    Any other ideas?
    Thanks

    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/how-do-i-upgrade-my-graphics-drivers

  • Can a drop down list item be multi line?

    got (another) problem.
    Client has asked me to add a new drop down list of reference codes. Some of these codes are very long - the biggest one reaching 3 lines A4 width.
    So testing it as a pdf I notice that anything that goes beyond the visual area of the dropdown shows as a pop-up box for the user to select - which is nice - at least they can see the entire content. Unfortunately, when they select this item it cuts off most of the content and the same happens when the form is printed.
    Ideally, if the entry is selected it would be great for it to appear in multi lined format so it can be entirely visible/printed - is this possible?
    If not, any other ideas. The list is about 20 entries deep and although I could just have it as a list with checkboxes I'd rather keep the form as succinct as possible.
    Thanks,
    Sunil

    Hi radzmar,
    Your links sounds like it's the right answer for me. Unfortunately, the correct answer has a link to a file that keeps bouncing me to the adobe.com from page so I can't see the code or any other information apart from the lo res screen shot. Can you help me any further?
    Many thanks,
    Sunil

  • How do I use one drop down list to refresh the list in another drop down?

    I am using a drop down list full of years (i.e. 2008, 2009..etc). When I make my selection from this drop down list (say for instance I select 2009) I want it to update the available data in the second drop down list. I have the query statement set up within the JSP page but it needs to be a dynamic SQL statement based off the value I selected in the first drop down.
    String sql = "SELECT GameId, GameDescription FROM Games WHERE Year = " + year;
    The variable "year" is the value I need to figure out how to assign. Now this variable is a Java variable (attribute) and Im unsure how to get the value from the previous drop down and assign it to that. Basically I need the JavaScript value from the first drop down assigned to the Java attribute "year".
    Anyone able to help me with this???
    Thanks,
    Jed

    Here are my two drop down lists. As you can see I build the second list dynamically based off the value of the year. I want to be able to assign my year to the value I select in this first drop down. How do I do that?? I only want to show games for the year I select. I currently have the year hardcoded to "2009" as you see below. How can i change that to be assigned to the JavaScript value i extract from the first select box?
    <select name="season">
    <option value='2009' selected>2009</option>
    <option value='2008'>2008</option>
    </select>
    <select name="gameselect">
    <%
    try
    String year = "2009";
    String connectionURL = "jdbc:mysql://localhost:3306/ElmwoodExpos";
    Class.forName("com.mysql.jdbc.Driver");
    Connection con = DriverManager.getConnection(connectionURL, "root", "thejedster");
    String sql = "SELECT GameId, GameDescription FROM Games WHERE Year = " + year;
    Statement s = con.createStatement();
    s.executeQuery(sql);
    ResultSet rs = s.getResultSet();
    while(rs.next())
    %>
    <option value="1"><% out.print(rs.getString("GameDescription"));%></option>
    <%
    catch(Exception e)
    %>
    </select>
    Thanks,
    Jed

  • How do I use a drop-down list to populate a list box

    I'm using livecycle 8:
    I basically have a drop down list with many selections available. I want the function to be when they select from the drop-down the choice they made appears in a list box next to the drop-down box. If they choose to add additional selections from the drop-down list they will add to the list field as well. If anyone has seen one of those on-line job application sites where you have a list of qualities on the left and you can select them and they populate to a list on the right, That is basically what I want.
    I'm not too familiar with adobe quite yet and if you can break the process down as much as possible I would greatly appreciate it.

    Here are my two drop down lists. As you can see I build the second list dynamically based off the value of the year. I want to be able to assign my year to the value I select in this first drop down. How do I do that?? I only want to show games for the year I select. I currently have the year hardcoded to "2009" as you see below. How can i change that to be assigned to the JavaScript value i extract from the first select box?
    <select name="season">
    <option value='2009' selected>2009</option>
    <option value='2008'>2008</option>
    </select>
    <select name="gameselect">
    <%
    try
    String year = "2009";
    String connectionURL = "jdbc:mysql://localhost:3306/ElmwoodExpos";
    Class.forName("com.mysql.jdbc.Driver");
    Connection con = DriverManager.getConnection(connectionURL, "root", "thejedster");
    String sql = "SELECT GameId, GameDescription FROM Games WHERE Year = " + year;
    Statement s = con.createStatement();
    s.executeQuery(sql);
    ResultSet rs = s.getResultSet();
    while(rs.next())
    %>
    <option value="1"><% out.print(rs.getString("GameDescription"));%></option>
    <%
    catch(Exception e)
    %>
    </select>
    Thanks,
    Jed

  • How do I remove an entry from the "Store Files" drop down list in the "Import Settings" section of Aperture 3.3.2

    The dropdown list "Store Files" in the "Import Settings" section of Aperture 3.3.2 displays the history of the entries previously added to the list. Some of the entries are no longer valid and I'm trying to delete them but I can't find a way to do this. This is a screenshot. Does anyone know how to do this?

    Once again - the Jive system ate my bullet points and messed up the formatting
    Is the MacOS X version in your signature correct? Then you cannot be using Aperture 3.3.2?
    You should not be seeing duplicate entries in the "Store Files" pop-up menu. This looks like your Aperture Preferences file is corrupted and needs fixing.
    Quit Aperture (and log off and on again, if you are running MacOS X 10.7 or later)
    Then reveal your User Library (from the Finder's main menu bar, the "Go" menu. Hold down the options-key until the library apears in the drop-down menu)
    In the Library folder select the "Preferences folder and locate the file "~/Library/Preferences/com.apple.Aperture.plist"
    Now you can either
    remove the com.apple.Aperture.plist file to the Desktop, to force Aperture to create a new one, but you will have to set again your Preferences from the "Preferences" panel,
    or make a backup copy of the file and edit it, if you are an experienced programmer and have Xcode installed. To fix the drop-down list you need to edit the item "RecentReferenceFolders" and delete the redundant folder names. Enter "recent" into the search field to find it quickly. If you click an item in the list, plus/minus buttons should appear. But only try this, if you know how to edit property lists, otherwise it will be much safer to delete the faulty list and to set your preferences again from the "Preferences" panel.
    Regards
    Léonie

  • How can I add more than five URLs to the address bar drop down list?

    How many URLs can the Awesome Bar hold in the drop down list? I was showing five, but when I tried to add a sixth by cutting and pasting the URL in the address bar and clicking "Enter", it did not show up. Can the Awesome Bar hold more than five?

    It is possible that you have an extension that sets this value to a lower setting than the current default of 12.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Webdynpro for ABAP - interactive Adobe form - drop down lists not working

    Hi all,
    I'm trying to create an interactive form for a client using webdynpro for ABAP and I've viewed the demo "Create SAP Interactive Forms by Adobe with Web Dynpro for ABAP" by Thomas Jung, but when I implement it the form following similar steps the form is not interactive.
    In the properties of the "InterativeForm", I've tried clicking the "enabled" flag both on and off.  I've also tried setting the "displayType" property to both "ActiveX" and "Native".  But none of this worked.
    I though my problem might be with Adobe reader so I switched from 8.0 back to 7.0 but this didn't make any difference either.
    The system we are using is NW04s WAS 700.  Any hints would be greatly appreciated!
    Thanks,
    -tom

    Thanks for the suggestion Dezso.  I've downloaded a newer version of ACF as indicated by the OSS note and installed it.  I'm still having the same issue.
    My basic question is what options should I be using in the form and on the InteractiveForm component?  It looks like because of the evolution of the product there are multiple options available.  I recall reading somewhere that as of a certain SP level we should have ZCI (zero client install) available.  The would be our preference.  It will be a support nightmare if each user needed a manual download of ACF.exe installed.
    Should I click the "enabled" flag on the InteractiveForm object?  When I create the form should I use the "Native" drop down list or the one from the "Active X" tab?  I would like to use the "List Box" control on the form as well but it is only available in the "Standard" tab.  So does that mean I can't get the selections from a "List Box"?
    Thanks,-tom

  • Acrobat 9 Form Creation: Drop Down List Has Blue Background

    I am creating a form using Acrobat 9 on Windows Vista Pro. I have several drop down list fields. These fields have a dark blue background that is visible even when the pdf is printed. I have tried changing field's Appearance property to "No fill color", but this has no effect whatsoever. Turning off "Highlight Fields" also has no effect.
    I've found a couple of questions on forums using Google about this matter, but no answers.
    Is there any way to turn off this blue background?
    Thanks in advance.
    Pat Dumond

    Hi Bruce,
    This forum is specific to Designer, which comes with Acrobat Pro 9. It will be easier to create this type of functionality in Designer (compared to achieving it in Acrobat).
    Designer creates XFA Forms, which are wrapped in a PDF. The user doesn't see any difference: eg they see a PDF which will open in Acrobat/Reader. However for user with Reader to be able to save the data they input, the form must be reader Enabled. This is a topic in itself and there are many discussions on the forums - just try a quick search.
    Now to the question...
    Yes, you can achieve this with some script. Basically you would need script in the preOpen event of the Business sub-category, which would look back at the selection in the Business category. Based on this value, the script would populate the sub-category with appropriate items.
    There is an example here: http://assure.ly/jcTahK.
    Hope that helps,
    Niall

  • How to change the width of the auto complete drop down list?

    Hi,
    I implemented an autocomplete mechanism, using ICompletionSession and ICompletionSourceProvider. I have an issue with the size of the drop-down list opened when I use this autocomplete mechanism. The width of the autocomplete list remains the same, even
    if the strings displayed change. This is apparent especially when I hit "backspace" on the already typed string, while the drop down list is opened: the deletion of the last character allows for more completion strings to be used, but since the drop
    down width does not change, the longer strings appear cut.
    Is there a way to force the drop down list to recalculate its width?
    Yoel

    I don't think there's any way, even VS itself can't do that you know, and the interfaces don't have such kind of events or properties.

  • Dynamic table with dynamic drop-down list values

    Hi,
    I need to display a dynamic table with 2 columns on an interactive form.
    My Context is defined as below:
    Root
    StudentData     0..n
    StudentName
    StudentCourses     0..n
    Text
    Value
    The 1st column should display student name, 2nd column should display student courses. The courses will be different for each student. I populated the context properly. I checked it by printing them. My DDL is bound to "Student Courses".
    When there is one row -> The DDL is populated with the courses of student 1 (as there is only one).
    When there are more rows -> The DDLs for all the students are populated with all the courses of all the students.
    I want to see the data populated like:
    TEXTFIELD    DROP-DOWN LIST
    Student 1------Student1-Course1
    Student1-Course2
    Student1-Course3
    Student 2------Student2-Course1
    Student2-Course2
    Student2-Course3
    I tried to do this in plain web dynpro using SVS.. it is also working similarly.
    I have set the singleton property of nodes "StudentData" and "StudentCourses" to false.
    Could any one tell me where I am going wrong?
    Thanks
    Ram

    Ram,
    I'm not sure how much this will help, but I know I had the same problem as you when I tried to get a similar thing working, but I can't remember which of the many changes I made fixed the problem, so I'll just show you my code and perhaps you can see if anything is different than yours.
    Here's where I'm creating my dropdown - in my case EastNew_RegOut is the same as your StudentData, and RateTypeDropValues is the same as your StudentCourses (the comments in the code are not meant to sound bossy to you, this is actually an example piece of code that other developers in my company "steal", so I have to put very specific instructions in there!):
    int nodeSize = wdContext.nodeEastNew_RegOut().size();
    for (int i = 0; i < nodeSize; i++) {
         //create an element called "table", that's the element at i.  So, basically it's a row.  Maybe I should have
         //called it "row" instead of table.
         IPublicDeviceExchange.IEastNew_RegOutElement table = (IPublicDeviceExchange.IEastNew_RegOutElement)wdContext.nodeEastNew_RegOut().getElementAt(i);
         //this line of code just executes an rfc that finds out what rates need to be in the dropdown for this particular row
         executeRateTypeDropdown(rateCategory, table.getNum(), wdContext.currentEastNew_MeterOutElement().getReggrp());
         //clear out what's already in there before we re-populate it.
         table.nodeRateTypeDropValues().invalidate();
         //now, I'm looping through all the values in the *actual* rate type dropdown (the one that's an RFC, populated by the above "execute" method)
         for (int j = 0; j < wdContext.nodeEastRatetype_DropdownOut().size(); j++) {
              //for each element in the *actual* Rate type dropdown, I'm going to create an element in my node that I created
              //and set the values from the *actual* one as the values in my node.
                        IPublicDeviceExchange.IRateTypeDropValuesElement element = wdContext.createRateTypeDropValuesElement();
              IPublicDeviceExchange.IEastRatetype_DropdownOutElement rateTypeOut = (IPublicDeviceExchange.IEastRatetype_DropdownOutElement)wdContext.nodeEastRatetype_DropdownOut().getElementAt(j);
              element.setText(rateTypeOut.getText());
              element.setValue(rateTypeOut.getRatetype());
              //here's another key - notice how I don't say wdContext.nodeRateTypeDropValues() - it's the one that's
              //directly off that table I created earlier - the thing that's essentially a row in my newReg table.
              //So, what I'm doing here is adding that new element I created to the dropdown FOR THAT ROW!               
              //(btw, if you're trying to duplicate this, and this method does not exist for your "table" object, it's
              //probably because you didn't listen to me above and you didn't create your node with the singleton property
              //set to false.)
              table.nodeRateTypeDropValues().addElement(element);
    As for my layout... my table is bound to the EastNew_RegOut node, and the column with the dropdown is bound to RateTypeDropValues.Value  (that's probably obvious, but there you have it anyway)
    Finally, in my context, EastNew_RegOut is singleton = true (I was surprised about this, actually, I would have assumed it was false) with a selection of 0..1 and RateTypeDropValues has singleton set to false with a selection of 0..1
    I hope that helps to some degree!
    Jennifer

  • AJAX two drop down lists

    I found a lot tutorials out there showing you how to make one drop down list populates another one but most of them either render the second ddl html in javascript (dealing with DOM crap!) or use third-party controls such as ATLAS. Then I decided to come up with my own solution for the problem. What I did was wrap the regular ASP.NET drop down list with two strings and strip off the rendered html that is returned to the Ajax object. This provides me a lot of flexibility: One=> I can use the regular ASP.NET control not having to dealing with DOM objects in JavaScript. Two=> I can use the same technique to use any ASP.NET controls with Ajax.
    I posted this tutorial at www.KYNOU.com
    I hope you guys like it!

    I found a lot tutorials out there showing you how to make one drop down list populates another one but most of them either render the second ddl html in javascript (dealing with DOM crap!) or use third-party controls such as ATLAS. Then I decided to come up with my own solution for the problem. What I did was wrap the regular ASP.NET drop down list with two strings and strip off the rendered html that is returned to the Ajax object. This provides me a lot of flexibility: One=> I can use the regular ASP.NET control not having to dealing with DOM objects in JavaScript. Two=> I can use the same technique to use any ASP.NET controls with Ajax.
    I posted this tutorial at www.KYNOU.com
    I hope you guys like it!

  • Email Select People From Drop Down List

    I am creating a form that sales reps fill out to go to one whole department and I have that all set with my email submit button.
    However I also need to form to go to one of 5 others based off their names in a Drop down box for who is a manager for a certain region. Since all 5 don’t need to be copied on all form submissions I want our sales reps to be able to select their manager from the drop down list to ultimately add their email address in the CC field when the forms is submitted.
    Is this possible?
    Thanks, Mike

    Ok,
    if you don't know scripting, then you can use this macro (requires Desiger ES2 or ADEP Designer).
    It will create the script for you.
    The only thing you have to do is to install the macro.
    http://thelivecycle.blogspot.com/2011/07/mailto-maker-macro.html

Maybe you are looking for

  • I need to reverse this problem, code included

    Hello, I am trying to master Java and I have a long way to go. I am still trying to get a grip on the fundamentals. I have a program (the code is below) that I am trying to manipulate and get to do something a little different then it does. The progr

  • How does one determine the amperage in macbook pro 5,4

    I need to replace the battery for my MBP 5,4 and have tried about 4 or 5 by now and none of them are holding a decent charge by which I mean more than an hour or so.  I've tried to educate myself on the meanings of amperage, mAh, watt hours, etc, etc

  • IPod Video; how to use it...

    I have absolutely no idea how to put videos on my iPod. What format is needed? Then do I just add a file to my library? etc.etc.

  • How to filter out multiple rows , using multiple selection criteria ?

    Dear Expert's, I am stuck with a problem while designing my dasboard. I have data in the following format. Year - Quarter - Customer - Division - KF1 - KF2 2005 - Q1 - SAP - Consulting - 10 - 20 2005 - Q2 - IDE - Food - 20 - 10 2005 - Q2 - SAP - Jets

  • Upgrade iWeb from 1.2 to 3.4 and now have subcategories on the site listed as websites??

    I just updated my old iWeb 1.2 to iWeb 3.4.   I have been using iWeb for years very successfully but having to upload using CuteFTP has recently been challenging thus the upgrade.  Now in the navigator bar, my "albums" which contained photo's and inf