i am a bit confused on how passing arguments works in views field view. i know i need to use contextual filters but i cannot seem to select the right settings to get what i need done.
situation (hypothetically, excuse the periods):
view parent has a list of accounts and their balance:
account 1.......................$balance
account 2.......................$balance
etc ...
view child has details for the account (categories where $ is spent)
account 1.......................$amount.......................travel
account 1.......................$amount.......................strippers
account 1.......................$amount.......................food
account 2.......................$amount.......................travel
account 2.......................$amount.......................strippers
account 2.......................$amount.......................food
i want to pass the argument account name from parent to child so that my final view looks like this:
account 1.......................$balance
......................................$amount.......................travel
......................................$amount.......................strippers
......................................$amount.......................food
account 2.......................$balance
......................................$amount.......................travel
......................................$amount.......................strippers
......................................$amount.......................food
so i want to pass the account name from parent to child so that the child details fall under the correct parent and so on. hopefully this makes sense. any help would be greatly appreciated.
*edit* solved! wrote a quick writeup:
http://blog.cvrc.virginia.edu/?q=node/17