[Sitemap] Grouping elements

  • Platform information:

    • Hardware: raspberry pi3b+
    • OS: rasbian stretch
    • Java Runtime Environment: openjdk
    • openHAB version: 2
  • Issue of the topic:
    Hello I want to have such a group with this value? How do I do this?c6ce7e8c7949cb2f4f06419ffb2e983fc17abf02_1_600x428~2

This is not a group it’s a sitemap element:

Text item=MyItem label="My Label [%s]" {
    Text item=MyOtherItem
    Text item=AndAnotherOne
}
1 Like

I do the same and add a label (Current Weather) on top :slight_smile:

Text item=WU_Cond {
	Frame label="Current Weather" {
		Text item=FibEye02_Temp valuecolor=[>35="red",>25="orange",>15="green",<=5="blue"]
		Text item=WU_Humid
		Text item=WU_Press
		Text item=WU_Cond
		Text item=WU_Rain
		Text item=WU_Prec
		Text item=WU_Wind_Speed
		Text item=WU_Wind_Direction
		Text item=WU_LastUpdate
	}
}

image