![]() |
|
Join between two tags - Printable Version +- MinimServer Forum (https://forum.minimserver.com) +-- Forum: MinimServer (/forumdisplay.php?fid=1) +--- Forum: Support (/forumdisplay.php?fid=4) +--- Thread: Join between two tags (/showthread.php?tid=5565) |
Join between two tags - stefano_mbp - 19-03-2020 17:19 Hello Simon I’m trying to define a new tag that is the result of the join between Composer and Grouping For example : Ludwig van Beethoven Moonlight Sonata ... I defined a tag named Comp-Work in indexTags Then in tagValue Comp-Work.default={Composer} and finally in tagFormat Comp-Work={$Comp-Work$Grouping} But I can only obtain the Comp-Work tag with just the Composer What am I missing? Thank you Edit in tagFormat Comp-Work.displayFormat={$Comp-Work$Grouping} RE: Join between two tags - simoncn - 19-03-2020 19:02 The displayFormat value is not shown in the index. You can use indexFormat for this but only to add tags that don't exist currently. For what you want, you could set tagFormat to: Comp-Work.indexFormat={$Composer$Grouping} RE: Join between two tags - stefano_mbp - 19-03-2020 19:21 It works! Wonderful Thank you RE: Join between two tags - stefano_mbp - 19-03-2020 22:29 It works! Wonderful Thank you |