Dummy parent item that displays dropdown list in smartphones

Does anyone know how to create a dummy parent that will display the child items in the dropdown list? Or do you have to create an actual page for all parent items? I don't have a smartphone so I can't experiment (is there an online site that provides this service, similar to the no-defunct Device Central?)...

Does anyone know how to create a dummy parent that will display the child items in the dropdown list?
What do you mean by a parent item? Do you want to create a navigation or just a simple dropdown list? If it is a dropdown list, why are you talking about an 'actual page' for it? Please elaborate your question to help us help you. Thank you.

Similar Messages

  • Search keyword display dropdown list two columns

    Sheet1:
    Sheet2:
    Question: Is it possible to create a searchable Dropdown list in Sheet1 A6 that displays a list of combined Sheet2’s ColA+ColB. And the ColB of the selected row will be the value of Sheet1
    B2.
    i.e. If type in a keyword ‘apple’ on Sheet1 A6, Sheet1 A6 cell will have a dropdown list of Sheet2 A2-B5. Then the user will select a row from this dropdown and Sheet1 B2 will display the price (ColB) of the selected value.
    Please let me know if this makes sense. Thanks.

    Some questions.
    Why is the price going on a different row?
    Do want a drop down at A6 and you will be selecting one item after another from this same place or do you want more DropDowns on the following rows.
    The price is inserted at cell B2. Will the price always be in cell B2 or the next blank cell in that column?
    What sort of DropDown are you looking for? Can we use a ComboBox or do you specifically want a Data Validation DropDown. (Can be done with a ComboBox but not sure how this could be done with Data Validation.)
    Regards, OssieMac

  • Items to display in list view web part not showing the items setup

    Hi, I have the following issue. I have a list view web part, but the web part is showing more items that the ones setup in the: Number of items to display in list view web part for this view.
    It is because that works when using datasheet view and not a normal view? Is there any technical documentation from Microsoft supporting this?

    thank you for your answer. It is interesting that the mobile view with the items to show in the mobile view doesn't work in the webpart, but it works when you are using datasheet view, but if you uncheck to activate the mobile view, then, the webpart doesn't
    show information, so, it works partially because one part works and not the other.

  • Strange item in desktop dropdown list after CS4 installed

    Since installing CS4, there is a new item in the dropdown list when I
    right-click on my desktop
    The new item is "Adobe Drive CS4". It has two items showing under it. They
    are "Connect to", and "New Project". The "New Project" is greyed out, even
    when Photoshop CS4 is running.
    Can anyone advise me what this is all about?? CS3 is still installed, but I
    will be removing it shortly. But it did not create any such item in the
    list.
    Ron Hirsch

    OK, so I now know what it is. But why is it there in the dropdown listing?
    If I click on "connect to", a small window opens, And, this last time that
    the window opened, it actually had text in it explaining what you did
    explain. Previous times had nothing in the box explaining anything.
    I don't feel I have any need for Version Cue or Adobe Drive CS4, but I see
    no way to change anything there. I did not install Verson Cue when I
    installed CS4. I don't see it in my Windows services listing, nor in the
    list of many startup items. I'd like to uninstall Adobe Drive CS4. I see a
    listing the XP programs window of "Adobe Drive CS4". But I see no path to
    get rid of that. Is there a path to do so?
    A new search in Google turned up the following
    ++++++++++++++++++++++++++++
    Any of you who have installed Adobe CS4 will know you will get a context
    menu entry for Adobe CS4 Drive, even if you chose not to install the actual
    program so effectively the entry is useless. After some googling and
    experimenting found two ways to remove it.
    1. Install & Uninstall
    Install Adobe CS4 Drive using the installer then uninstall it. This seems to
    get rid of it.
    2. Manual Remove
    Open Regedit and delete these two entries.
    HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{C95FFEAE-A32E-4122-A5C 4-49B5BFB69795}
    HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\{C95FFEAE-A32E-4122-A5C 4-49B5BFB69795}
    +++++++++++++++++++++++++++++++++
    I'll probably do the Registry editing
    Ron Hirsch

  • How to display configuration items as a dropdown list

    Hi,
    When delivering a repository manager, we need provide a configuration archive (cc.xml and co.xml). For an attribute cc.xml, can we display it as a dropdown list and let user choose the value?
    For example, in cc.xml:
    <attribute name="Protocol" type="string" default=""/>
    I want do display a label "Protocol" before a dropdown list, in which the user can choose from "HTTP" and "HTTPS".
    Normally the user can only fill in the blank of the attribute, but I wanna let user choose the value.
    Thanks,
    Ray

    Hi,
    I think you cannot change the label on thy fly. The internationalization on other hands should work.
    Let's say you have in your <b>XXXX.cc.xml</b> this:
    <b><attribute name="param_protocol" type="enum"/></b>
    Create in the folder where you have <b>XXXX.cc.xml</b> file a folder <b>bundles</b>. inside this folder, inside this folder another folder <b>classes</b>. Here create a file <b>XXXX.properties</b> (XXXX is from your config name). So you will get this structure:
       XXXX.cc.xml
       bundles
          classes
             XXXX.properties
    Inside this file you define labels for your properties, in this case:
    lbl.param_protocol=Protocol
    In fact I haven't tried it in another language, I suppose that creating <b>XXXX_de.properties</b> shold do the trick for DE language and so on.
    Hope this helps,
    Romano

  • Not All Items Appearing In Dropdown List

    Hi,
    You have a newbie here. I am trying to populate a dropdown list in a JSP with the following code, but not all the records are being displayed (approximately 4900 records are displayed). The Submit button that follows this Select tag is not being displayed, nor are any error messages being encountered. The last Option tag is incomplete. Any clues?
    Thanks,
    Neil.
    +{color:#0000ff}Vendor: <select name="gsdb">+
    +<% String vGSDB = null;+
    String vName = null;
    String GSDB = null;
    +if(request.getParameter("gsdb") == null){+
    GSDB = "";
    +}else{+
    GSDB = request.getParameter("gsdb").toString().substring(0,5);
    +}+
    i = 0;
    +while(i < vendorName.length) {+
    +if (vendorName == null) {+
    break;
    +}+
    vGSDB = vendorName.substring(0,5);
    vName = vendorName.substring(6);
    +if(vGSDB.equalsIgnoreCase(GSDB)) {+
    out.println("<option value=\"" vGSDB + "\"selected>" + vName + " **" + vGSDB + "**</option>+
    +");+
    +}else{+
    +out.println("<option value=\"" + vGSDB + "\">" + vName + " **" + vGSDB + "**</option>+
    +");+
    +}+
    +i++;+
    +}+
    +%>+
    +</select>{color}+

    You have 4900+ records?? I'd say there was some exception being thrown somewhere, either you're running out of memory or something. Your response isn't coming completely which indicates that your output was interrupted but since it had been committed, the server couldn't redirect to an error page or display the exception or stack trace.
    Check your logs, there'll definitely be something there.

  • How to have a unique list of items for separate dropdown lists?

    Software: Acrobat X (10) pro on Windows
    I want to create a pdf form in which all dropdown lists are populated with the same list of items to choose from. If I use the same field name for all drop down lists, the item selected in one dropdown list is automatically selected in all lists. This is not what I want. I wish to be able to select a different item in each & single dropdown list. I could of course maintain separate item lists for each field (using separate field names) but what a waste of time!... especially as the field lists would then have to be updated separately. There's got to be a better way to do it.
    Any idea how this could be achieved? Thank you.

    Here's a sample script that first defines a list of items in an array and uses it to update a number of dropdowns, name dd1...dd10:
    // Populate an array with the list items
    var aItems = ["-- Select a state --", "Alaska", "Hawaii", "Washington", "Oregon", "Idaho", "Montana", "Wyoming", "Nevada", "Colorado", "Arizona", "New Mexico"];
    // Loop through the dropdowns...
    for (var i = 1; i < 11; i += 1) {
        // ...and set the list items
        getField("dd" + i).setItems(aItems);
    That's all there is to it. This can be run from the Mouse Up event of a temporary button that you create, the interactive JavaScript console (Ctrl+J), etc.
    More info on setItems: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.752.html

  • Add a extra item to a dropdown list in Creator 2

    In Creator 2,
    I created a dropdown list and bound it to a database.
    The dropdown is working fine and displaying the values
    from the database. I would like to know is there anyway
    to add extra items to the same dropdown list without
    adding it to the database, like an option "ALL" or a
    default option which could be blank.
    Thanks in advance.
    Daniel

    Please see this thread for instructions on how to add an "All" option to the top of a drop down based on a database:
    http://swforum.sun.com/jive/thread.jspa?threadID=63252

  • Non-printing items that display in the PDF, but do not print

    I've not found definitive word on this, but we are creating a document in InDesign (CS3 Mac) and would like to include some navigational arrows that advance users from one page to another.
    They would display on screen but would not print when the user prints.
    My understanding is that if we render the PDF from InDesign with those items set as a non-printing layer, that they would not display in the PDF.
    Is there a way to do this?
    Thanks,
    Dave

    Just set the buttons option to Visible but Doesn't Print.
    Bob

  • Unable to add items to dropdown list using javascript

    Hi,
    I'm trying to add additional items to a dropdown list at runtime using javascript.
    I'm doing this by invoking the addItem method on the dropdown list field during its initialize event.
    However when I run the generated pdf in Acrobat Pro, I get the following error in the console -
    GeneralError: Operation failed.
    XFAObject.addItem:3:XFA:form1[0]:#subform[0]:field0[0]:initialize
    Method: 'addItem' cannot be called because doing so would violate this document's permissions settings.
    The pdf form has no signatures or any other stuff in it.
    What additional permissions do I need to add and how ?
    You can view the pdf here -
    https://dl.dropboxusercontent.com/u/8022836/xfa3_test.pdf
    Thanks,
    Joel

    Is there a reason to use the code you did? It looks like the problem is with the variable's permissions when going through the template.
    This code works just fine in that same event:
    this.addItem("new item");
    As does:
    var f = xfa.resolveNode("form1.#subform1[0].field0");
    f.additem("new item");

  • Me21n change line item dropdown list value

    hi experts,
    i have a requirement to automatically remove the aulty po line item when user click on CHECK or SAVE button, i done this by removing the record from ETT[] and POT[] at ENHANCEMENT-POINT mm06ef0p_pruefen_01 SPOTS es_mm06ef0p_pruefen INCLUDE BOUND.
    it is working fine except one scenario which is, if the faulty line item is 00020, and the line item dropdown list is selected line item 20, after i removed the record from POT[], it hits abap runtime error. when i check at debugger, it is caused by system will look for line item 00020 ( follow dropdown list value ) but the record is removed, so come to error... it is working fine if the dropdown list is selected line item 10.
    so i am looking for a way to change the dropdown list value.
    or you all have some other suggestion?
    please help... i need it urgently coz i have been solving the problem for 2 weeks....
    thanks a lot

    Hi,
    generally it's not a good idea to delete item without using standard method. You can see one example why it is usually complicated. Maybe I have a workaround for you. You can try to use BADI ME_PROCESS_PO_CUST. There is a method CHECK where you get reference to PO header. You can easily get references to your items by calling method GET_ITEMS. So you will perform your check for each item and for wrong items you will call method INVALIDATE. This item will be marked as invalid and it will not be posted. Here I do not know how it will be displayed to user. Maybe the user will have to delete this item manually.
    Cheers

  • Javascript needed - need checkbox to check automatically based on selected item from dropdown list

    I am building a fillable form.  In this form, I have created items in a dropdown list.  Based on the item picked from the dropdown list, I need a corresponding checkbox to be checked.  I am certain there is an easy javascript to resolve my current problem.  Please assist.
    For example: dropdown list field (SubSupplier1) -   Demolition                            export value 2
                                                                                    Rough Carpentry Labor       export value 4
                                                                                    Rough Carpentry Material    export value 3
    I need the corresponding checkbox (SalesTax1) to automatically be checked when Demolition (export value 2) or Rough Carpentry Material (export value 3) is selected.
    Thank you,
    Jennifer

    Hi Jennifer,
    This should help you do what you need. Place it in the Custom Calculation property of the dropbox and select "commit selected value immediately" in the fields options:
    var drop = this.getField("SubSupplier1");
    var check = this.getField("SalesTax1");
    if ((drop.value == 2) || (drop.value == 3)){
    check.checkThisBox(0,true);
    else {
    check.checkThisBox(0,false);
    The code is asking if the export value of the field is either '2' or '3' and if so, check the box.
    Otherwise uncheck the box.
    If you don't want it to uncheck on other selections, remove the 'else' section of code.

  • Add element in dropdown list dynamically

    Hi All,
    I am facing a problem in adding item in a dropdown list dynamically.
    When i get dropdown list through IgetElementById get null.
    var list = document.getElementById("targetgroupname");
    here list comes as null. Now I've to fill this list. I am using below code -
    for(var j=0;j< com.length;j++){
    iist.options[j]= new Option(com[j],com[j]);
    But it is not working. My list is not getting filled with these values.
    I doubt due to var list -> null it does not allow to add element.
    But I am not getting any clue, how to initialize it.
    Please suggest, I am new to javascript.
    Thanks & Regards,
    Sneha.

    Hi,
    Thanks for the reply, yes the select box has that id - targetgroupname.
    actually there are 2 dropdown lists, Based on the selection of first dropdown list another list shd be filled.
    So I've written a script at "onchange" of first dropdown list. It works fine when a value gets changed at first dropdown list.
    In some cases I've to display a preselected value at first list ( which comes from previous page as parameter), in that cases there will be no onchange on first list, so I've called the script function manually after creating the first list,like below :
    <SCRIPT> checkSource();</SCRIPT>
    and in this case it does not work & I get a null when i try to read the 2nd list.
    But I am not sure why it is happening.. may be it is not loaded /created on page when i am calling it.
    If yes, what shd I do ?
    Thanks for your time.
    Regards,
    Sneha

  • Referencing the text in a Dropdown List

    Hi,
    I would like to know if it is possible to reference the text of the selected item of a Dropdown List.  The scenario is as follows: 
    I have a dropdown list in a form which is used to select profit centres.  The dropdown list's Entry List consists of the Profit Centre Code as the VALUE and the Profit Centre Description as the corresponding TEXT.  I would like to reference the TEXT of the selected item in a formula for building a dynamic string that includes the Profit Centre Description plus other data, for informational display purposes in a Plain Text control.  However, it seems that only the VALUE of the dropdown list can be referenced in a formula and not the TEXT.
    Is this a limitation of Visual Composer?
    Thanks,
    Mustafa.

    Hi Basheer,
    I'm not clear about your proposed solution.  In the reference "#ID|ACA1EO|@DL_Division", "#ID|ACA1EO|" is the ID of the form which contains the Dropdown list and "DL_Division" is the name of the Dropdown list control itself.  When referenced in this way, the VALUE of the selected item is always returned.  However, I would like to determine the TEXT of the corresponding selected item and there doesn't appear to be a method to do this.
    Can you provide more details for your proposed solution?
    Thanks,
    Mustafa.

  • Using an Array to Populate a DropDown List

    Using LCD 8
    Want to populate one dropdown list - with up to 24 items - based on a radio button selection.
    If RBG== 1, then display dropdown list with values pertaining to value "1".
    I have the dropdown list working.
    (rinse and repeat)
    However, I have coded each 'addItem' with a value.
    So, if I have 3 radio buttons - I code for 72 different 'addItems'.
    There is also a very good chance that some selections will only result in 3 values - where as other selections may yield 12 or 24.
    I want to use global variables as an array (I think) and then be able to loop through these variables and populate the dropdown list with each pass of the loop.
    This reduces the code from '72 lines' to 'very few lines').
    The variable values for each RBG value are set in a script object.
    How do I use/declare an array for my variables??

    Sorry about that. I had the link ready to paste but neglected to do so: http://acrobatusers.com/tutorials/getting-external-data-into-acrobat-x-javascript
    The idea is that you can read in data from an external or attached file, but it will need to be a different format such as XML, tab-delimited text, or CSV, which can all be exported from a spreadsheet.

Maybe you are looking for