Sure, sorry if I wasn’t clear enough. I have two channels:
- Cases
- Services (front-end, cms-implementation, e-mailmarketing, social media)
When I add an entry to the channel “Cases”, I want to be able to select which services i delivered. I’ve found “P&T Field Pack” on GitHub (http://github.com/brandonkelly/pt_field_pack, P&T created Playa I think aswell), which has a “Multi-select” field. This sort of does what I want it to, except for the fact that it’s static (you have to preset options which you can select while publishing). So I thought: what if I declare a query where you’d normally set the options, sort of like this (warning: aircode ahead)
{exp:query sql="SELECT title,id FROM entries WHERE channel == services"}
{title} : {id}
{/exp:query}
If it would be rendered properly during publishing, this would return the id’s of the cases I’ve selected, then all I’d have to do is loop through those entries with exp:channel:entries by passing the id’s on to that… Am I making any sort of sense?