>
> It works great, but I still need to *filter *the drop-down select on
> create/update a person's record in the SQLFORM.smartgrid:
>
> - A person cannot select himself as his partner
> - A person can only select a partner that is single
>
> db((db.person.partner == None) & (db.person.id != *current.id
> <http://current.id>*)).select()
>
Sure. The first argument to IS_IN_DB can be a DAL Set object specifying a
query to filter the records:
requires=IS_EMPTY_OR(IS_IN_DB(db((db.person.partner == None) & (db.person.id
!= current.id)),
'person.id', '%(name)s'))
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.