Did not know that before. But this design is really good! Wow!

However, as always, I suggest this useful comments can be appeared in
build-in doc such as http://www.web2py.com/examples/default/dal

On Apr20, 10:04am, mdipierro <mdipie...@cs.depaul.edu> wrote:
> This is not a bug but it was a bug before.
>
> If you want the field editable
>
>          SQLField('field_n', 'boolean', writable=True),
>
> If you want the field to appear readonly
>
>          SQLField('field_n', 'boolean', writable=False, readable=True,
> default=True),
>
> (it will show the default value, in your case None because default is
> no set)
>
> If you do not want the field to appear at all (what you want)
>
>          SQLField('field_n', 'boolean', writable=False,
> readable=False),
>
> Massimo

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to