On Friday, February 10, 2017 at 11:45:39 AM UTC-5, Andriy wrote: > > Thanks, Anthony. lambda that you posted works like you described, I`ll use > it. > > But if I remove* requires=[IS_NOT_EMPTY....* validator completely, the > form.vars still returns name without spaces. Does it apply some validation > without "requires" set, by default, and removing spaces? >
The default validator for a "string" field is IS_EMPTY_OR(IS_LENGTH(...)), and the IS_EMPTY_OR validator also strips the whitespace. Anthony -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

