[SOLVED] Separator for items for a room

Hi,

I add all my items with with groups, like this

Group gAT “Dachgeschoss”
Group gFF “Obegeschoss”
Group gGF “Erdgeschoss”
Group gCE “Keller”
Group gGA “Garage”
Group gGT “Garten”

Group FF1_Child “Simon’s Zimmer” <boy_1> (gFF)
Group FF2_Child “Lena’s Zimmer” <girl_1> (gFF)
Group FF_Bedroom “Elternschlafzimmer” (gFF)
Group FF_Bath “Badezimmer” (gFF)
Group FF_Corridor “Gang” (gFF)

Group GF_Kitchen “Küche” (gGF)
Group GF_Livingroom “Wohnzimmer” (gGF)
Group GF_Bath “Gästebad” (gGF)
Group GF_Corridor “Gang” (gGF)

And then I add all items to a group

Number hmHeizung_EG_WOHNZIMMER_TISCH_ACTUAL_TEMPERATURE “Aktuelle Temperatur” (GF_Livingroom) {channel=“homematic:H…”}

In the sitemap I only add the groups

Frame label=“Haus” {
Group item=gAT label=“Dachgeschoss” icon=“attic”
Group item=gFF label=“Obergeschoss” icon=“firstfloor”
Group item=gGF label=“Erdgeschoss” icon=“groundfloor”
Group item=gCE label=“Keller” icon=“cellar”
Group item=gGA label=“Garage” icon=“garage”
Group item=gGT label=“Garten” icon=“garden”
}

But at the moment I have the problem to separate the items in a group. I like separate the items like in the screenshot.

How can I do that, without to change my hole groups.

best regards,
Rene

If you use groups for display purpose, you have no control over how items are presented (e.g. colouring, visibility, buttons, text-only) or the order they come up in. Groups in sitemaps are really just a quick and simple way to get started.

Users find they move to fully specifying individual Items in sitemaps to get that degree of control.

I use a string item with content ‘####################################’ as a seperator for different groups
grafik

Or use frames inside the sitemap

grafik

The problem is that you can’t insert a string item or sitemap frame in the middle of a sitemap group.

But how can I create something like that?

then

and then

The hard way

Text item=GardenGroup {
     Text item=windspeed
     Text item=subGroupGreenhouse (
          Text item=temperature
           Switch item=heater
      }
      Switch item=sprinkler [valuecolor=[ON="red",OFF="blue"]]
}

Thank you. With you hint I get a solution for me.

best regards