Thanks guys. Yes I’m talking about ‘Labels’ only. But I think I may be doing something wrong because if I specify a custom-label Text inside the sitemap I’m unable to see the rest of the items within the group.
Sitemap
Frame label="Ground Floor" icon="groundfloor" {
Group item=GF_Kitchen {
Text item=GF_Kitchen_Door label="Door"
}
Group item=GF_Dining
...
Using Groups directly in sitemaps is really just a quick fix to get something working. It offers you no control over presentation at all - like order of Items, miss one out - or as you want, labeling tweaks.
Move on from using Groups for ‘popouts’ when fine tuning sitemaps. It is more work to list individual Items, but you have more control. You can still use a Group for a one-line presentation, but use { } to get the “click for sublisting” effect
Frame label="Ground Floor" icon="groundfloor" {
Group item=GF_Kitchen {
Text item=GF_Kitchen_Door label="Door"
Switch item=GF_Kitchen_light
Text item=GF_Kitchen_Window label="Window"
}
Group item=GF_Dining
...