[Zope] Checking types in DTML?

Michel Pelletier michel@digicool.com
Wed, 22 Sep 1999 11:45:08 -0400


> -----Original Message-----
> From: Scott Anderson [mailto:sanderson@ttm.com]
> Sent: Wednesday, September 22, 1999 11:19 AM
> To: zope@zope.org
> Subject: [Zope] Checking types in DTML?
> 
> Hi all,
> 
> Let me state what I'm trying to do, then the problem I've run 
> into with
> my solution.
> 
> I have a series of HTML option inputs, all with the same name and a
> unique value:
> 
> <input type="checkbox" name="removeLine" value="6">
> <input type="checkbox" name="removeLine" value="7">
> <input type="checkbox" name="removeLine" value="8">
> 

<input type="checkbox" name="removeLine:list" value="6">
<input type="checkbox" name="removeLine:list" value="7">
<input type="checkbox" name="removeLine:list" value="8">

will allways return 'removeLine' as a list, no matter how many items are
checked.

-Michel