I am using Drupal with Views and the extended profiles module activated. To enable users to check multiple areas of interest I also added a module called Profile Checkboxes. It adds the ability to use a free-form list but turns it into either check boxes or radio buttons.
This module works very cleanly and did not present errors. But if a user check multiple interests then those are stored in the profile_values
table as a comma seperated value.
So if the user likes lets say cars, trucks and bikes. That is stored in one field of the database as:
+-----+-----+---------------------+
| fid | uid | value |
+-----+-----+---------------------+
| 12 | 32 | cars, trucks, bikes |
+-----+-----+---------------------+
I want to be able to have views parse this correctly for me so that I can create filters that only shows users who have entered an interest. The options it gives me is to validate "if ant of" the values in the list is chose, I selected all the values in the list. But it only shows the users who have check one of the values. I hope it makes sense.
Do I need to code this in a custom tpl-file or can this be done with Views?