Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
dreamincode #1
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
-
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... -
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... -
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... -
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... -
#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: ... -
Murray *TMM* #2
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
-
Lionstone #3
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
-
dreamincode #4
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
-
Murray *TMM* #5
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
-
dreamincode #6
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
-
dreamincode #7
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



Reply With Quote

