Transform/Display item states on Pages

Hi,

How to transform and display an item state on pages?
I want to display the presence state as “Present/Not Present” instead of “ON/OFF”.

In Openhab 2 I would do the following:

Item:

Switch Presence_Ralf "Ralf [MAP(presence.map):%s]"  { channel="XXX:online" }

Sitemap:

Text item=Presence_Ralf

Over here in Chapter 8 “Expressions” are mentioned. How could expressions be used for this usecase?
I’m also interested how to achieve the same in the default auto-generated page “Home Page”. I do not see any option to change the item label. Is there an option to make this configuration on item level?

You can continue to use the Map by editing the State Description metadata on the Item. That will use the map to transform the state prior to display.

Or, if you want to use an expression it would look something like:

=(items.Presence_Ralf.state == "ON") ? "Present" : "Not Present"

You can put an expression like that in most of the fields I think.

I use it in lists to define a badge instead of just showing the Item’s state.

Anywhere an Item has a widget that is automatically shown, you can define everything about that default widget by editing the “default x widget” Item metadata on the Item.

2 Likes

That was the trick! Thank you.

1 Like

Hi,

As i searched here but (for me) it was “only” 90% of the final solution:

The expression

=items.Presence_Ralf.displayState

instead of

=items.Presence_Ralf.state

will show “Present” or “Not Present” instead of “ON” and “OFF” when you used State Description metadata on the Item.

1 Like