Re: [web2py] Re: checkbox input default value

2011-10-11 Thread Wikus van de Merwe
Try to define default values for your fields:
name = Field(name, boolean, default=False)



Re: [web2py] Re: checkbox input default value

2011-10-10 Thread Matt Broadstone
I'm using the Field in a rather unconventional way - I just have a
number of Field objects in a class that I refer to as my model (its
not actually connected to any database), and I use the SQLFORM.factory
to generate the form. The actual Field entry in the form looks like
this:
AutoStart = Field('AutoStart', 'boolean',
label=T(info))

in the view I use it inside a custom form like so:
dd{{=form.custom.widget.AutoStart}}{{=form.custom.label.AutoStart}}/dd

the resulting HTML is:
ddinput class=boolean id=no_table_AutoStart name=AutoStart
type=checkbox value=oninfo/dd

pretty straight forward, but you can see that the value is somehow there.

Matt

On Mon, Oct 10, 2011 at 4:05 PM, Wikus van de Merwe
dupakrop...@googlemail.com wrote:
 Are you using list:string? Can you post the relevant parts of your model
 and controller?