I always do

def HiddenField(*a,**b):
    b['readable']=b['writable']=False
    return Field(*a,**b)

In trunk you can also do

Field(':name') instead of Field('name') but it not clear if that
feature (':') should stay or not.

Massimo

On May 17, 12:03 am, pbreit <[email protected]> wrote:
> You could make them readable=False, 
> writable=Falsehttp://web2py.com/book/default/chapter/06#Record-Representation
>
> Or customize the form. I have customized all of the forms in my app 
> (http://pricetack.com):http://web2py.com/book/default/chapter/07#Custom-forms

Reply via email to