Joost Verhoog wrote:
> So in fact you're saying that it is not possible to use VALUELIST properties
> in a form, other than in textboxes?

That is never true.
You can always put it in <input type="hidden" ...> 
then manipulate it with JavaScript.

> > >>     <select name="InOrEx " cspbind="InOrEx "
> > >>         <option value="In">In</option>
> > >>         <option value="In">Ex</option>
> > >>     </select>
> > > But this does not work either, for the same reson.

"InOrEx " contains an erroneous space, your value for Ex is wrong, 
and your HTML syntax is wrong.
See below.

> Nuno wrote:
> > 4) With VALUELIST Hardcoded in Class
> >      <select name="InOrEx" cspbind="InOrEx">
> >          <option value="0">In</option>
> >          <option value="1">Ex</option>
> >        </select>

Reply via email to