[web2py] Re: show_if multiple selections

2016-07-07 Thread Anthony
Also, keep in mind that the DAL's logical operators are "&" and "|", not "and" and "or". In any case, show_if does not support multiple conditions, so .belongs is the way to go here. Anthony On Thursday, July 7, 2016 at 7:19:45 AM UTC-4, Jeff Riley wrote: > > Worked perfectly. Thank you Marlys

[web2py] Re: show_if multiple selections

2016-07-07 Thread Marlysson Silva
You'we welcome :D , mark the answer as completed. Em quinta-feira, 7 de julho de 2016 08:19:45 UTC-3, Jeff Riley escreveu: > > Worked perfectly. Thank you Marlysson. > > db.events.event_level.show_if = (db.events.event_type.belongs("Mood", > "Headache", "Nausea", "Pain")) > > > On Thursday, Ju

[web2py] Re: show_if multiple selections

2016-07-07 Thread Jeff Riley
Worked perfectly. Thank you Marlysson. db.events.event_level.show_if = (db.events.event_type.belongs("Mood", "Headache", "Nausea", "Pain")) On Thursday, July 7, 2016 at 5:54:31 AM UTC-5, Marlysson Silva wrote: > > Try use belongs, of DAL. > > > http://web2py.com/books/default/chapter/29/06/t

[web2py] Re: show_if multiple selections

2016-07-07 Thread Marlysson Silva
Try use belongs, of DAL. http://web2py.com/books/default/chapter/29/06/the-database-abstraction-layer#belongs Em quinta-feira, 7 de julho de 2016 06:24:08 UTC-3, Jeff Riley escreveu: > > Hello all. I am trying to get the line below from my db.py file to work. > Currently it is only working for