Hi folks, I'm sure this is a newbie question with probably a simple answer, but I haven't been able to figure it out.
What I want to do is have a Panel display all of the nodes tagged with a particular taxonomy term OR its children. In the panel, I have a context which is the parent term. The view has a Taxonomy: Term ID with depth argument. In the panel it's converted to the Taxonomy: Term ID context.
However, the panel will only display any nodes tagged with the top taxonomy term, not any of the children. I've tried several different things to solve this but none of them worked. I guess I could add contexts for each of the child terms to the panel, but I'm sure there must be an easier way.
Is it a custom argument I have to create in Panels? If so, how? or am I missing something really simple...
Thanks in advance.

Comments
Two-step solution
When I did something similar the other day, I ended up with the following configuration:
Quite many steps, and quite abstract. Sorry about that.
If you want to dig deeper: Try to find a way to avoid the 'depth 10' in the argument settings, since this causes a quite nasty database query.
If you want a much easier but less flexible solution: Use the standard taxonomy list page, but add a '/all' at the end of the path – like taxonomy/term/1/all. This will give you a list of all nodes with this term, or any of its child terms (but not displayed in Views or Panels).
Good luck!
//Johan Falk, NodeOne, Sweden
Thanks!
Fantastic, thanks. That sounds like it should work well--I will try it out when I have time.
Thanks for your time to answer.