[web2py] Re: disable label [closed]

2010-06-10 Thread annet
Setting: label { white-space: nowrap; } solved the problem, thanks for providing me with this solution. Annet.

[web2py] Re: disable label

2010-06-09 Thread howesc
last time i was wrestling with the forms i noticed that everything has nice class names - use css to put no-wrap on the label class. (firebug plugin to firefox really helps with inspecting generated HTML). also i think i read something about being able to specify table or div based layouts for for

[web2py] Re: disable label

2010-06-08 Thread annet
Thanks for providing me with this solution, problem solved. I have another problem with this form. In the first column some of the field names are split up, like: Sub-dossiernumber * : Is there a way to solve this? Kind regards, Annet.

[web2py] Re: disable label

2010-06-07 Thread mr.freeze
Try this: form=SQLFORM(db.signup_auth,labels=dict(akkoord_incasso='')) On Jun 7, 9:34 am, annet wrote: > I have a form: > > form=SQLFORM(db.signup_auth) > > in which I don't want some of the labels to show, I tried: > > db.signup_auth.akkoord_incasso.label=None > > but that doesn't work, is there