Hi.
On a panels_page, I'm trying to pass the values of a Nodereference CCK field with multiple values to a panel_view, using a Relationship in the context system.
The nodereference relationship only seems to support passing the first value to the view. Looking at other relationships (term_from_node, user_from_node, etc) they all seem to pass only one object.
I'm surprised that I've been unable to find a plugin that supports passing multiple values. I'd be pleased to write one, but I'm wondering if I've not found a plugin because I'm missing some larger limitation of the context system.
From what I gather, I'd have to write a new context plugin (say, 'nodes' instead of just 'node') and write a relationship to handle this.
I'd then have to figure out a way to get views to receive multiple nids, which means either
1) serializing the nids and writing a views argument to accept, unserialize and them
OR
2) writing a panels content plugin to manage the passing of data from my panel to my view
or perhaps something else.
Am I way off-base here? Any advice or guidance would be very much appreciated.

Comments
Panel Style
Hi,
it is sort of possible.
Basically you need to use a view, and then you can use panel_style http://drupal.org/project/panel_style which will allow you to pass each node to the mini panel and can be displayed.
it will only allow you to place the each node within the simple pane of the mini panel.
--
Gordon Heydon
--
Gordon Heydon
Any other solutions?
Just wondering if any other solutions to this problem have been identified in the last 2+ years. To summarize:
This may just be a re-wording
This may just be a re-wording of gordon's explanation, but this is how I did it:
Create a view that takes nid as an argument. Create a variant that is a "content pane." In the "Pane settings" area, set "Argument input" to be node:NID. Add the node reference field you're after, and use the appropriate widget. Save.
Go to your page and add the views pane. Map the NID, it should be set properly by default. I was thus able to display teasers for multiple nodereference values for the master node.