[Zope] input type=checkbox name not pushed to zsql method namespace

2000-10-09 Thread Beuserie Frédéric (stbrice dsi)

hi,

it seems to me that the variable name corresponding to a checkbox into a
form is not
pushed to the namespace of the SQL query when it's not checked. if it's
checked, it works
fine. the error reported is related to the argument list entry corresponding
to the name of the checkbox into the zsql method.

thanks a lot.

-
Beuserie Frederic
DSI / Système et Exploitation - 3 Suisses Belgique

Tel: +3269/882485 / Fax: +3269/882491
Email: [EMAIL PROTECTED]


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] input type=checkbox name not pushed to zsql method namespace

2000-10-09 Thread Francisco José Esteban Risueño

this is the standard behaviour in a HTML form. To avoid this problem we
include
an line like this:

dtml-if "REQUEST.has_key('CheckBox_name')"
dtml-else
 dtml-call "REQUEST.set('CheckBox_name', 'N')"
/dtml-if

in the method that receives the form data.

Hope this help

=?iso-8859-1?Q?Beuserie_Fr=E9d=E9ric_=28stbrice_dsi=29?= escribió:

 hi,

 it seems to me that the variable name corresponding to a checkbox into a
 form is not
 pushed to the namespace of the SQL query when it's not checked. if it's
 checked, it works
 fine. the error reported is related to the argument list entry corresponding
 to the name of the checkbox into the zsql method.

 thanks a lot.

 -
 Beuserie Frederic
 DSI / Système et Exploitation - 3 Suisses Belgique

 Tel: +3269/882485 / Fax: +3269/882491
 Email: [EMAIL PROTECTED]

 ___
 Zope maillist  -  [EMAIL PROTECTED]
 http://lists.zope.org/mailman/listinfo/zope
 **   No cross posts or HTML encoding!  **
 (Related lists -
  http://lists.zope.org/mailman/listinfo/zope-announce
  http://lists.zope.org/mailman/listinfo/zope-dev )

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )