Add another level to sitemap?

Is there an easy way to add another level to a sitemap.

What I want to do is when I have navigated from say “first Floor” to “Media Room” all I want is a menu that gives me basic control of lights, audio on/off, volume, etc…(easy so far) then on that same screen I would like the option/button that takes me level further for more detailed control of the audio/tv system for example.

Is there some way to do this as I see that I am unable to have a frame within another frame in the Designer?

Cheers,
Mike

p.s I want to do this with the Basic UI on OH2

You do not do this by frames, you need some widget that you want to click in order to get to the next level.

You can nest Text and Group widgets in any depth you like:

Text label="Level 1" {
  Text label="Level 2" {
    Text label="Level 3" {
      Text label="Level 4" {
      }
    }
  }
}
1 Like

Thanks Kai,

I just needed a push in the right direction.

Cheers,
Mike

Thank you from me too! This answers a question I had too.