[web2py] Re: SQLFORM doesn't render attributes adjusted after form creation

2011-12-21 Thread Massimo Di Pierro
yes. that is a logic issue form = SQLFORM(...) form['_class']= '...' {{=form}} renders for with new attributes {{=form.custom.begin}} is a variable defined before the _class was changed. On Dec 21, 1:34 pm, Anthony wrote: > That method will work in general, but not with form.custom.begin and >

[web2py] Re: SQLFORM doesn't render attributes adjusted after form creation

2011-12-21 Thread Anthony
That method will work in general, but not with form.custom.begin and form.custom.end specifically. I guess we should make that clear in the book. Anthony On Wednesday, December 21, 2011 1:44:03 PM UTC-5, viniciusban wrote: > > In web2py book, on chapter FORMS and VALIDATORS, section Forms and >