2015-08-18, 17:30
Just exploring the brave new world of custom music nodes and could do with a bit of advice (using Confluence skin).
In, for example, the standard genre view of the music library, once I pick a genre I see the artists with songs with that genre but also get a "* All artists" entry. Selecting that shows me all the albums with songs with that genre and so on. However if I create a custom node to show me the artists with a specific genre, this shows just the artists and does not offer an "all" entry.
Say my xml looks like this:
Is there something I can add that will make it behave like the standard view and have a "*all" entry?
In, for example, the standard genre view of the music library, once I pick a genre I see the artists with songs with that genre but also get a "* All artists" entry. Selecting that shows me all the albums with songs with that genre and so on. However if I create a custom node to show me the artists with a specific genre, this shows just the artists and does not offer an "all" entry.
Say my xml looks like this:
Code:
<?xml version='1.0' encoding='UTF-8'?>
<node type="filter">
<label>Test Node (Country Artists)</label>
<content>artists</content>
<order direction="ascending">artist</order>
<rule field="genre" operator="contains">
<value>Country</value>
</rule>
</node>