I was wondering if it was possible to use this module to output the nodereference_view's results as a table that is included seemlessly into the parent view's table.
Right now, I have a view of organizations that pulls in each org's Director via nodereference. I want the view to output as a table like so:
Org Title | Director Name | Director Telephone | Director Email
The problem I'm encountering is that the director nodereference view is brought in as a sub-table within the parent view's table, looking like this:
Org Title | [[Director Name||Director Telephone||Director Email]]
What is the best way to have a child nodereference view appear seemlessly within its parent's table and not as a subtable?
Comments
Comment #1
joachim commentedThat's not going to be possible here.
This modules creates a CCK formatter. That in turn fetches the completely rendered view and inserts it as the CCK field output. So by the time there is any interaction between pieces, the subtable is an already rendered piece of HTML.
What you want to do instead is use a noderef relationship on your main view, and then pull in more fields from the Director nodes.