I must be missing something. A basic one would be rather simple.

<cfset locations = "index.cfm,index1.cfm,index2.cfm" />

<cfoutput>
<select size="1" onChange="if (this.value !=
''){document.location=this.value};">
<option>- - - - - - - - - - - - - - - - - - - - - - </option>
<cfloop list="#locations#" index="I">
        <option value="#i#">#i#</option>
</cfloop>
</select>
</cfoutput>


What else do you want from it? The overall style would be handled from a
style sheet. Individual option styles could be handled with a different
formatted list (or array)


<cfset loc = arraynew(1) />
<cfset arrayappend(loc, "index.cfm,cccccc") />
<cfset arrayappend(loc, "index2.cfm,ececec") />
<cfset arrayappend(loc, "index3.cfm,ffffff") />

<cfoutput>
<select size="1" onChange="if (this.value !=
''){document.location=this.value};">
<option>- - - - - - - - - - - - - - - - - - - - - - </option>
<cfloop from="1" to="#arraylen(loc)#" index="i">
        <option value="#listfirst(loc[i])#"
style="background-color:#listlast(loc[i])# ">#listfirst(loc[i])#</option>
</cfloop>
</select>
</cfoutput>

Guess I'm just not sure what more you want (or could get) out of a drop down
menu... 

I searched google for "What is dave wanting in this drop down" but no
results :)

-----Original Message-----
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 04, 2005 5:18 AM
To: CF-Talk
Subject: RE: jump menu

dw doesn't give it up dynamically,a menu yes a jump menu no, neither does
any of the available extensions, especially not from a cfc and the ones I
did get to work seemed to choke for some damn reason when you tried to style
them as some of us like to do ;)

----------------------------------------
From: James Holmes <[EMAIL PROTECTED]>
Sent: Monday, April 04, 2005 2:44 AM
To: CF-Talk <cf-talk@houseoffusion.com>
Subject: RE: jump menu 

Or a few clicks in DreamWeaver ;-) 

-----Original Message-----
From: Micha Schopman [mailto:[EMAIL PROTECTED] 
Sent: Monday, 4 April 2005 2:37 
To: CF-Talk
Subject: RE: jump menu

This is stuff everyone could have found with 5 sec. of Google. 





~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201360
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to