Hi all,
The answer to my question is certainly very easy, but I just can't manage to find it anywhere...
In the way suggested in
this thread, I have created a stateless form that allows me to summon an HTML view containing records corresponding to certain filters.
My problem is: if the following piece of code works to get records containing a certain word (here, submitted as "searchParam" through the stateless form)...
- EmpOtherInfo = Other_Information [(((Employee_Name.contains(input.searchParam) || Team.contains(input.searchParam)) || Department.contains(input.searchParam)) || Employee_Name.Email_Id.contains(input.searchParam))]
... how to include a checkbox field in this kind of expression? In clear, if I have a checkbox field on my stateless form, how to pull out records according to the status of their individual checkbox (true/false)?
Just a simple question of syntax...
Thanks in advance for your help!
Dorian