Hello, I am trying to output multiple select values in drop down box. This is an update form. User sees what he selected previously and can edit it if needed.
This is my code:
<tr>
<td bgcolor=eeeeee width="226" valign="top"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Post Weeks:</font></font><font color=ff0000>*</font><br><font size="1">Hold shift while clicking to select multiple weeks. 8 weeks max</font></td>
<td width="514"> <select id="sel01" name="postweek" multiple size="5" onchange="copyOptions();" onblur="countit(this)">
<cfoutput query="get_request_info"><cfloop from="#startdate#" to="#dateAdd("d",700,now())#" index="i" step="7">
<option value="Week #week(i)# (#dateformat(i,"mm/dd/yyyy")# - #dateformat(dateAdd("d",6,i),"mm/dd/yyyy")#)" <Cfif postweek is "Week #week(i)# (#dateformat(i,"mm/dd/yyyy")# - #dateformat(dateAdd("d",6,i),"mm/dd/yyyy")#)">selected</CFIF>> Week <cfif #week(i)# is "53">1<cfelse>#week(i)#</cfif> (#dateformat(i,"mm/dd/yyyy")# - #dateformat(dateAdd("d",6,i),"mm/dd/yyyy")#)
</cfloop></cfoutput>
</select
</td>
</tr>
But for some reason I only get one (first) of the 4 choices that user has has in his record selected. Does anybody know how can I make all his previous selections be selected in this drop down?
PLEASE HELP!
Thank you
This is my code:
<tr>
<td bgcolor=eeeeee width="226" valign="top"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Post Weeks:</font></font><font color=ff0000>*</font><br><font size="1">Hold shift while clicking to select multiple weeks. 8 weeks max</font></td>
<td width="514"> <select id="sel01" name="postweek" multiple size="5" onchange="copyOptions();" onblur="countit(this)">
<cfoutput query="get_request_info"><cfloop from="#startdate#" to="#dateAdd("d",700,now())#" index="i" step="7">
<option value="Week #week(i)# (#dateformat(i,"mm/dd/yyyy")# - #dateformat(dateAdd("d",6,i),"mm/dd/yyyy")#)" <Cfif postweek is "Week #week(i)# (#dateformat(i,"mm/dd/yyyy")# - #dateformat(dateAdd("d",6,i),"mm/dd/yyyy")#)">selected</CFIF>> Week <cfif #week(i)# is "53">1<cfelse>#week(i)#</cfif> (#dateformat(i,"mm/dd/yyyy")# - #dateformat(dateAdd("d",6,i),"mm/dd/yyyy")#)
</cfloop></cfoutput>
</select
</td>
</tr>
But for some reason I only get one (first) of the 4 choices that user has has in his record selected. Does anybody know how can I make all his previous selections be selected in this drop down?
PLEASE HELP!
Thank you