Russ Michaels (Snake) wrote:

Put the selected sizes in a list, and then when you loop over the query to
create the selectlist options, check if each value is in the list.

E.G

<cfset selectedItems = Valuelist(GetItemSizes.FKSizeIF)>

<select multiple name="ModifiedSize">
<cfoutput query="GetSizes">
<option value="#GetSizes.SizeID#" #IIF(Listcontains(SelectedItems, SizeID),
DE('selected'),DE(''))#>#GetSizes.Size#</option>
</cfoutput>
</select>



#IIF(ListFind(SelectedItems, SizeID),DE('selected'),DE(''))#

Use listfind, not listcontains.  Otherwise you could end up in a whole world of pain. 
;o)

Stephen





--
These lists are syncronised with the CFDeveloper forum at 
http://forum.cfdeveloper.co.uk/
Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

CFDeveloper Sponsors and contributors:-
*Hosting and support provided by CFMXhosting.co.uk* :: *ActivePDF provided by 
activepdf.com*
     *Forums provided by fusetalk.com* :: *ProWorkFlow provided by proworkflow.com*
          *Tutorials provided by helmguru.com* :: *Lists hosted by gradwell.com*

To unsubscribe, e-mail: [EMAIL PROTECTED]



Reply via email to