Are prioritizing list/menus even possible?

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Are prioritizing list/menus even possible?

    I want to include a list/menu drop down box that lets the user choose a 1, 2 or
    3 for each choice in a list of items I want them to prioritize.
    For example
    Rank the importance of the following needs: (with 1 being the highest)
    (list/menu here) Air conditioning
    (list/menu here) Maintencance of existing schools
    (list/menu here) Alleviation of overcrowding

    I want them to rank the choices but only be able to enter a 1, 2 or 3 among
    the three choices. Right now with a list/menu they can enter a 1 on each of
    the items.
    Any help would be greatly appreciated.



    dreamincode Guest

  2. Similar Questions and Discussions

    1. Using list/menus in update page
      I am using the forms list/menu object to update my asp page. I can create a list and select an item but it does not update the record. What am I...
    2. Multi-line TextBox - Paste text with numbered list, bullet list, tab character
      Hi All, I need a server control that's exactly like a multi-line TextBox, but also allow users to paste text with numbered list, bullet list, and...
    3. Dynamic List / Jump menus
      Has anyone ever managed to add multiple select / jump menus where the options change according to the previous selection? So for example if in...
    4. Need a button to rollover, show list and link from list
      Hi, very new to Flash and need some help with a button. I'm creating a title bar for a site and I'm doing something similar to the button on...
    5. #25625 [NEW]: [chm] bug on ref.ftp.html | ftp_*list cant retrive ftp list on some ftpd
      From: sentomas at hotmail dot com Operating system: freebad PHP version: 4.3.3 PHP Bug Type: FTP related Bug description: ...
  3. #2

    Default Re: Are prioritizing list/menus even possible?

    Why not use radio buttons instead of a list menu? For example -

    Air conditioning - * 1 * 2 * 3 * 4 * 5 (where * = radio button)

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "dreamincode" <webforumsuser@macromedia.com> wrote in message
    news:dgroor$niv$1@forums.macromedia.com...
    >I want to include a list/menu drop down box that lets the user choose a 1,
    >2 or
    > 3 for each choice in a list of items I want them to prioritize.
    > For example
    > Rank the importance of the following needs: (with 1 being the highest)
    > (list/menu here) Air conditioning
    > (list/menu here) Maintencance of existing schools
    > (list/menu here) Alleviation of overcrowding
    >
    > I want them to rank the choices but only be able to enter a 1, 2 or 3
    > among
    > the three choices. Right now with a list/menu they can enter a 1 on each
    > of
    > the items.
    > Any help would be greatly appreciated.
    >
    >
    >

    Murray *TMM* Guest

  4. #3

    Default Re: Are prioritizing list/menus even possible?

    Then, to clarify, if you only want to allow a single "1" selection, give all
    the "1" radio buttons the same name. Set their value to indicate which
    choice was made.



    "Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
    news:dgrort$nne$1@forums.macromedia.com...
    > Why not use radio buttons instead of a list menu? For example -
    >
    > Air conditioning - * 1 * 2 * 3 * 4 * 5 (where * = radio button)
    >
    > --
    > Murray --- ICQ 71997575
    > Team Macromedia Volunteer for Dreamweaver
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    > [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    > [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    > [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    > [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    > ==================
    >
    > "dreamincode" <webforumsuser@macromedia.com> wrote in message
    > news:dgroor$niv$1@forums.macromedia.com...
    >>I want to include a list/menu drop down box that lets the user choose a 1,
    >>2 or
    >> 3 for each choice in a list of items I want them to prioritize.
    >> For example
    >> Rank the importance of the following needs: (with 1 being the highest)
    >> (list/menu here) Air conditioning
    >> (list/menu here) Maintencance of existing schools
    >> (list/menu here) Alleviation of overcrowding
    >>
    >> I want them to rank the choices but only be able to enter a 1, 2 or 3
    >> among
    >> the three choices. Right now with a list/menu they can enter a 1 on each
    >> of
    >> the items.
    >> Any help would be greatly appreciated.
    >>
    >>
    >>
    >
    >

    Lionstone Guest

  5. #4

    Default Re: Are prioritizing list/menus even possible?

    if I use radio buttons then they could pick 1, 2 and 3 on one item. See below.
    Please rank the importance of the following needs: (with 1 being the highest)
    1- 2- 3- Air conditioning
    1- 2- 3- Maintenance of esisting school buildings
    1- 2- 3- Alleviation of overcrowding in existing buildings
    [url]http://sps.k12.mo.us/prinsurvey/longrange.htm[/url]

    dreamincode Guest

  6. #5

    Default Re: Are prioritizing list/menus even possible?

    Not if the radio buttons for 1, 2, 3, 4, and 5 all had the same name for
    each item, e.g.,

    <input type="radio" name="AirCond" value="1">
    <input type="radio" name="AirCond" value="2">
    <input type="radio" name="AirCond" value="3">
    <input type="radio" name="AirCond" value="4">

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "dreamincode" <webforumsuser@macromedia.com> wrote in message
    news:dgrut8$45s$1@forums.macromedia.com...
    > if I use radio buttons then they could pick 1, 2 and 3 on one item. See
    > below.
    > Please rank the importance of the following needs: (with 1 being the
    > highest)
    > 1- 2- 3- Air conditioning
    > 1- 2- 3- Maintenance of esisting school buildings
    > 1- 2- 3- Alleviation of overcrowding in existing buildings
    > [url]http://sps.k12.mo.us/prinsurvey/longrange.htm[/url]
    >

    Murray *TMM* Guest

  7. #6

    Default Re: Are prioritizing list/menus even possible?

    sorry--here is the correct address
    [url]http://sps.k12.mo.us/prinsurvey/longrangesurvey.asp[/url]

    dreamincode Guest

  8. #7

    Default Re: Are prioritizing list/menus even possible?

    I agree, they would only be able to pick a 1 or a 2 or a 3 etc.. for air
    conditioning. But they could still pick a 1 for the other two items also.
    I want them to rank air conditioning with the other two topics. for example
    Rank
    2--Air conditioning
    1--Maintenance
    3-Overcrowding

    I hope I am making my self clear. If not I can explain more.

    dreamincode Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139