Hello,
I have a table for a multi select of tags.
col1->user_id
col2->tag_id
for other workflow processes
I trying to figure out how to get this as a field in a profile tab that doesn't use comprofiler text col with separater to store but this join table.
I thought i could use the query field type but that only helps with the form select but not store to my join table.
I am not familiar with writing cb code.
I am ok with joomla code
and using fof for my custom views.
I need someone to start me off in the right direction here.
or Is it possible to effective search for id#s in a multiple value column with |*| ?
example
Code:
SELECT * FROM #__comprofiler
WHERE
FIND_IN_SET('id1', cb_multiselectfield) OR
FIND_IN_SET('id2', cb_multiselectfield) OR
FIND_IN_SET('id3', cb_multiselectfield);
It looks like I might only need a pointer on writing the advanced filter on a user list so it is similar to the advanced search for user management where multiselectfield include any of (SELECT id FROM #__customtbl)
Let me know if I need more clarification.