On Sunday, April 16, 2017 at 9:11:37 PM UTC-7, Winter Kryz wrote:
>
> Thanks, but how can I do the loop thing. I'm new on web2py so I don't know 
> how to do that.
>
> Can you explain me please?
>
>

I have a models/mymodel.py that has something like:

db.define_table('mytable',
                       Field('issueYr','integer', requires=IS_IN_RANGE(1965, 
2017)),
                       otherfields,etc)



and in a controller, I do
      ....
      form=SQLFORM('mytable', etc)



That should do it, although I usually enter a date by hand, and then use 
browser suggestions.



El domingo, 16 de abril de 2017, 21:09:55 (UTC-3), 黄祥 escribió:
>>
>> you can use requires = IS_IN_SET() validators for that :
>> ref:
>>
>> http://web2py.com/books/default/chapter/29/07/forms-and-validators#Range--set-and-equality-validators
>>
>> perhaps you can use for loop for that, so that you dont define the years 
>> by yourself
>>
>> best regards,
>> stifan
>>
>

-- 
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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to