Numeric drop down menu

Dear Gurus,
I am clearly being simple and missing something here, despite a trawl of the help pages.
I have a 1 D array of numeric values. I want to create and update a drop down menu so a user can select a numeric value, a bit like a combo box, but with numeric data in there. No labels, just numbers. The array has a variable length.
Is there any way to do this without converting the numbers to strings and shoving it into a combo box? I've been struggling and failing with the Menu Ring
Paul
Message Edited by Manc Pablo on 08-12-2008 10:02 AM
"When I read about the horrors of drinking, I gave up reading"

You're confusing the value of the ring with the string being displayed. The string is what the user sees in the dropdown. The value is what gets returned to the program. Thus, you need to convert the array of numbers to a string so you can set the strings that are displayed to the user. All rings work this way.
Note: You can wire the array of numerics to the "Values[]" property node. This will generate a list of items with "<>" characters around your numbers. Normally this indicates a value that has no corresponding display string. The "Values[]" property node is also considered a private property, not generally intended for normal use.

Similar Messages

  • Sort values in numeric order in drop down menu

    Is there anyway to sort the values in numeric order-asending for the drop down menu of a particular field.
    Any ideas?
    G

    Add a property 'SORTED' and Boolean = true in BPE.
    G

  • Cannot remove autocomplete entry from address bar; have already cleared history, and entry is not in the drop-down menu of the address bar either.

    I am having problems removing an autocomplete entry from my address bar; I have tried clearing my history, so it's no longer in that, and I do not have it bookmarked either, so it's not getting the URL from that location either. The autocomplete entry isn't even showing up in the drop down menu, so I can't even scroll through that to delete it.
    Basically, I want to be able to type "st" and go to "store.steampowered.com"; however, despite numerous times of typing in "st" and then going down into the drop-down menu to choose "store.steampowered.com", the bar continues to autocomplete "steamtrades.com", which is exceptionally annoying because I do not have that website bookmarked, or in my history, yet it continues to autocomplete to that address, which I do not want it to autocomplete to, and cannot figure out how to remove because I've already cleared my history multiple times, do not have it bookmarked, and it is not showing up in the drop down of the address bar for me to go down and force delete it.

    Did you try to remove some letters from steamtrades.com to see if that bring this entry up in the drop-down list?
    If it is not in the history then it might be present with a typed=1 flag indicating that you have typed or pasted it in the location bar.
    You can use the SQLite Manager extension in Firefox to inspect the places.sqlite file to see if this entry comes up in the moz_places table.
    *SQLite Manager: https://addons.mozilla.org/firefox/addon/sqlite-manager/
    <pre><nowiki>SELECT datetime(visit_date/1000000,'unixepoch') AS visit_date, url, title, visit_count, frecency
    FROM moz_places, moz_historyvisits
    WHERE moz_places.id = moz_historyvisits.place_id AND url LIKE '%steamtrades.com%'</nowiki></pre>

  • Determine number in a field based on word-choice in a drop-down menu

    I'm trying to insert a number in a field based on a word I've chosen in a drop-down menu.
    Example:
    I have a drop-down menu named "Fruits". In that menu is "Orange", "Apple" and "Banana".
    I have a different field called "Price". If the user selects "Orange" in the "Fruits" drop-down, the value of "Price" is 10. If the user selects "Apple" the value of "Price" is 15. If the user selects "Banana" the value of "Price" is 20.
    Been working with this for awhile, and feel like Im very close, but can't get it to work. If someone could help me I'd be grateful.
    Thanks,
    T.

    Thanks to both of you. I realize this is more complex than I thought, and that I didn't state my challenge correctly. Let me try again:
    I have a number of textual items in a dropdown, let's say "Apples", "Bananas" and "Cherries".
    I have an array of form fields, with different properites expressed as a numeric value, say: "Size", "Weight", and "Cost".
    Each of the items in the dropdown has a value for each of the fields.
    So when I select an item from the drop-down I want to populate the entire array from the values associated with the items in the drop down. Different items will fill the array of values (I actually have 28 properties in the array and about 7 items in the drop-down). The items will always have a value for all the properties in the array, but I want the user to be able to override all entries. So enter custom text in the drop-down, which would provide blank fields in the array, which could also be overwritten by the user.
    Hope that makes sense, and I apologize for my earlier attempt at describing this. It's hard enough to do in plain English, there's no way I can make this happen in Javascript, LOL!
    Thanks in advance for your patience and help.
    T.

  • Mobile drop down menu won't disappear once I have clicked one of the links in the drop down to take me to an anchor further down the page. I want the drop down to disappear upon clicking and scroll at the same time.

    Basically I have a drop down menu, which i have tried to create numerous times with different widgets available in muse or as freebies on the net.
    The menu within the drop down is a manual menu and each button links to an anchor on the page, so that when clicked the page scrolls to that anchor.
    My problems is that once I have clicked one of the links to go to the anchor further down the page the drop down remains. For the purpose of User Experience and fluidity across the mobile design i would like the drop down to disappear on click of the anchor link. Is this possible?
    Many thanks,
    Lew.

    Hi Brad,
    At the moment I have used an downloaded widget which utilises the acordian style to create the drop down. Here is a link to the Mobile version of the site - http://www.brainstormdesign.co.uk/phone/index.html
    Many thanks,
    Lew.

  • Populate a table field from selection made from drop down menu

    Hello all,
    I'm having a bit of head scratching problem that i just can't get my head around. I'm using Dreamweaver CS4
    and phpmyadmin for my site.
    I have a form that inputs a record into a table in my database.
    The form is a user picking a fantasy sports team. A user selects a player from a drop down menu.
    The players name is got from a recordset that accesses the player database, with the values coming
    from the id field and the values from the name, so a user selects a player by there name and not
    there unique id value. The code for this is as follows:
    <tr valign="baseline">
    <td nowrap="nowrap" align="right">GoalKeeper:</td>
    <td><select name="gkid_team">
    <?php
    do {
    ?>
    <option value="<?php echo $row_rs_pt_gk['gkid_gk']?>" ><?php echo $row_rs_pt_gk['gkname_gk']?></option>
    <?php
    } while ($row_rs_pt_gk = mysql_fetch_assoc($rs_pt_gk));
    ?>
    </select></td>
    What i'm trying to achieve is that when a user selects a player from the drop down menu, their price is displayed in the table cell next to the menu. The value is held in the same table of database as the names and id values. I need to do it so the page doesn't need to be refreshed so i assume i need to use some sort of javascript, php and/or maybe ajax. However with java and ajax i have very little or no experience so i'm not really sure what i'm doing. I've been on numerous forums, looked in text books and have been searching the net for hours but i can't seem to solve this problem.
    Any help or advice would really be appreciated as i just can't seem to get my head around it,
    Thanks,
    pb1uk

    can this be done??? thanks in advance annieYes.
    One way of doing it is submitting the form on change of the selected value and fetch back the query results. Have a servlet invoke the method and set the results in the request.
    Another way (not recommended) is to fetch the results corresponding to all the values in the dropdown and have it in the session. The latter solution would obviously be slow.

  • Enabling certain functions from a drop down menu

    I am using the run-time menu along with case statements to control the flow of my program.  I would like to ensure that a certain option is disabled until a number of other options have been selected.  It is for a near field emissions scanning program.  Basicly I would like to make sure that the file path and any notes about the sweep (product serial number, position, mode) are entered prior to selecting "run sweep" from the drop down menu.  I know that an option can be disabled permenately by selecting disabled and grayed while the run-time menu is being setup, but this not what I want to do.  I simply the "run sweep" option to be disabled until the sweep info and file path have been setup.  How can I go about doing this?  Thanks everyone!
    Kirk Fabbri
    Associate EMC Test Engineer
    Gentex Corporation
    Zeeland, MI
    (616)772-1800 ext 4571

    On the block diagram, right click on the list control, select Create -> Property Node.  Usually this will create a Visible property node.  Left click on the word Visible, and select Disabled Items [ ] from the list.  Then right click again and select Change to Write.  You can then wire a numeric 1D array into the property node.  Whatever numbers are in the array, those corresponding elements in the list will be disabled.  So you can disable whatever you want before a certain action, and then use the property node again to enable items after the action is done.  To enable all items, wire in an empty numeric array.
    - tbob
    Inventor of the WORM Global

  • Drop down menu for date

    Hi all
    i want o select date range from the drop down menu like
    Year ( from 2007-to current year )
    and month (1 to 12)
    with default month as current month
    plz help
    It should be a drop down
    thanks

    Thanks sir, it works exactly like i needed.
    i just need some minor improvements,
    1.I should be able to display months as 1 - 12 instead of jan,feb,etc and its default value should be the current month
    and second
    for year it should be like 2007(default to the current year)
    Plz help
    P.S : My fields fro year and month in numeric
    Message was edited by:
    Rameez

  • Duplicate Drop Down Menu

    I have a drop down menu in one of my forms that has numerous (over 50) items.  How can I copy and paste this listing to keep from having to re-type the information?

    Make sure that rather than having the cursor inside of the field, you click on the field itself - click away from the field and then click the handle on the left side of the field to simply "select" that field (the drop down) and then use the keyboard commands, this will create a duplicate drop down below the first one with the same data.
    If this is not working, what happens when you "paste"?  If nothing happens I would try another web browser, our application runs in Flash and occasionaly there are bugs in recognizing those keyboard commands but it should work in a different web browser.  You should also make sure Flash player is up to date: http://get.adobe.com/flashplayer/
    Thanks,
    Josh

  • Is there a way to create a drop down menu with an automatic answer dependent on what is chosen?

    Is there a way to create a drop down menu with an automatic answer dependent on what is chosen? An if-then statement perhaps?  I am looking to add over 100 drop down options and would like to have a message automatically pop up depending one which option they chose.  Thank you.

    Hi,
    You would use the skip logic to conditionally show form items based on the selection within the drop-down menu. Here's a link to a description of the feature in our help documentation:
    http://help.adobe.com/en_US/formscentral/using/WSd789abd336388b1642c7fce012da94afe4f-8000. html#WS0faeceb8c23f5d60-774f03e3131ddc76d7d-8000
    Regards,
    Brian

  • In the new Pages 5.0, what is the page break shortcut key. I cannot find the key as indicated on the drop down menu.

    in the new Pages 5.0, what is the page break shortcut key (it used to be the Fn + enter). I cannot find the (new) key as indicated on the drop down menu. Please help.

    Hi Bruce and fruhulda,
    ok, I found the keyboard viewer, it only shows the traditional symbol 'return'.  something like a sideway u-turn continued with the arrow under.  This is the Canadian or US keyboard. 
    btw thanks for your suggestion.

  • Trying to create a drop down menu in numbers...please help

    Hi
    Can anyone indicate how to go about creating a drop-down menu.
    Thanks in advance

    Hi Meela,
    Welcome to Apple Discussions and the Numbers 08 forum.
    Check page 66 of the Numbers User Guide supplied with your copy of iWork. The guide refers to them as "pop-up" menus, so a search using "pop-up" will be more successful than one using "drop down".
    Essentially the process is:
    Click on the cell to select it.
    Open the Inspector and choose Cell Format (icon is a cell containing 42)
    Click the Cell Format menu and select Pop-up Menu from the bottom of the list.
    Double click an item in the list to edit it. Click the + button to add an item, the - button to delete the selected item.
    Done.
    Regards,
    Barry

  • Mail can not open, blocked by drop down menu

    Mail will not open. Drop down menu says: To view this page you need to log in to area "www.outlookmail.com" on www.outlookmail.com:443 Then it asks for my name and password.
    I click cancel and the drop down exits and reappears. Do I have a virus? Now what?

    Hi Jo ann,
    I just got that on popping on my email saying the same thing" www.outlookmail.com:443" to sign in.
    what did you do to fix it? what is it -is it? is it a virus?
    can you please let me know what i should do
    I appreciate that, thank you.
    geraldsmagic from Ca.

  • Contacts drop-down menu blocked by on screen keyboard in text messages

    Whenever I draft a new text message I put the cursor in the contact box and type the first letter of the name of the person I am trying to contact.  If I have more than 3 people in my phone whose names start with that letter, the drop down menu becomes partially obscured by the on screen keyboard.  If I attempt to scroll down on the menu, it selects whomever I happen to press.  My attempts to minimize the keyboard have been futile.  I understand I can work around this by going into contacts and selecting someone to text, but the problem is pretty aggravating.  Please help!

    Want to contract me? You can follow me on Twitter @RobGambino
    Be sure to click Like! for those who have helped you.
    Click Accept as Solution for posts that have solved your issue(s)!

  • It won't let me share my movie. Nothing happens when I click "share" or even in the drop down menu. I don't get options. HELP! I need this video by tonight!

    I have worked with iMoive a ton and have never had an issue. I consider myself pretty computer savvy. This new iMovie is not my friend. It will not let me share my new video. I click on the project and click "share" like it says but I don't receive any further prompt. It literally does nothing. I tried the drop down menu and I see the "share" with an arrow indicating there are options but no drop down menu appears. I need this video by tonight to submit for work. HELP!

    I got it to share! No reloading iMovie!
    I do not have Mackeeper on my laptop
    I have the movie files on an external hard drive
    1. Close out iMovie
    2. Eject the external hard drive
    3. Start up iMovie
    4. Plug in the external hard drive
    5. Go into finder and double click on the folder containing the movie
    6. Select the movie as if to edit
    7. Share it!
    I hope this works for you too

Maybe you are looking for

  • When trying to purchase additional content on an app it won't let me

    I'm trying to purchase gems on  boom beach and every time i tryout purchase could not be completed please contact i tunes support. I updated my personal and credit card information and i don't know whats wrong

  • Ipod nano 6th Gen, Turning on Randomly

    I bought an ipod nano red 16gb, probably 4 months ago. In the last few weeks, It keeps turning on randomly. Like i will hold the pause button and it will turn off, then in a variable amount of time, it will randomly turn on again.. What's the go? I j

  • After the latest update the app can't be opened.

    Updated iBook to the latest version but it cracked after the book covers are just displayed. Tried several times and turned the iPad off/on several times, but still it does not work. Who has the idea how to fix this or Apple is going to do this?

  • My Itunes keeps crashing after recent update!

    Hi!! My itunes crashes the minute I start it up, it started with the second last update and when I got prompted to update this morning I hoped it would fix it, but it didn't. The only time it works is when I am not connected to the internet but once

  • Authorisation in workflow - Urgent

    Hi Workflow Experts, I have one req with Error message dispaly. requirment with when ever User accessed work items in business workplace in R/3 System then Error Message should display. when ever work items for portal access then user can access. for