[Zope] Handling results from <select> tag

Pavlos Christoforou pavlos@gaaros.msrc.sunysb.edu
Thu, 6 May 1999 17:30:11 -0400 (EDT)


Hi -

On Thu, 6 May 1999, Alexander Staubo wrote:

> Consider a form:
> 
>   <form action="Post">
>     <select name="Values" multiple>
>       <option value="A">A</option>
>       <option value="B">B</option>
>       <option value="C">C</option>
>    </select>
>    ...
> 

Try:

<select name="Values:list" multiple> 
this will ensure that Value is a list whatever the selection

Pavlos