On Saturday, May 19, 2018 at 4:32:49 AM UTC-4, mweissen wrote:
>
> Hi Anthony, 
> do you have an answer for the second problem?
>

No, other than to submit a Github issue (or better yet, a pull request). 
SQLFORM.accepts does convert to a list for insertion into the database but 
fails to copy the list to form.vars.

For now:

def listify(obj):
    return obj if isinstance(obj, list) else [obj]

listify(form.vars.auswahl)

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

Reply via email to