Re: [web2py] Re: Server side form validation

2011-08-29 Thread Chris Rowson
Thanks for the rapid reply Massimo, It is much appreciated. Chris On Aug 30, 2011 12:23 AM, "Massimo Di Pierro" wrote: > Validation is always performed server side. > > if you use FORM(INPUT()) that each input gets its own > requires=[..] > > if you use SQLFORM(table) than the require

[web2py] Re: Server side form validation

2011-08-29 Thread Massimo Di Pierro
Validation is always performed server side. if you use FORM(INPUT()) that each input gets its own requires=[..] if you use SQLFORM(table) than the requires are from the table.field.requires. Anyway, do not use FORM(...INPUT()...) but use SQLFORM.factory(...Field(...)...) It is mo