View Single Post
  #6  
Old 03-12-2004, 11:07 AM
 
netcoweb netcoweb is offline
 

Advanced Member
  
Join Date: Oct 2002
Location: Bay Area, CA
Posts: 36
 

Default Shouldn't this work??

Shouldn't this work? The select box is empty and when i look at the html code the name comes up fine but the options dont come up at all.

I changed this:
Code:
<td> <input type=text name="extra_array[{$extra_fields[field].fieldid}][value]" size=24 value="{$extra_fields[field].value|escape:"htmlall"}"> </td>

To this:
Code:
<td> <select name="extra_array[{$extra_fields[field].fieldid}][value]"> <option value="{$extra_fields[field].value|escape:"htmlall"}"> {$extra_fields[field].value|escape:"htmlall"} </option> </select> </td>
Reply With Quote