Use an enumeration instead of a boolean. You can define an image for each value of the enumeration.
Hi Lennart,
Can you add both images to your table and then use conditonal visbility based on the available boolean?
Hi guys!
Thanks for the tip! To get the devices images in the table the enumeration worked perfectly! to get the flags into the table depending on the booleon I used custom css:
flags{
background-image: url(../../../img/greenflag.png);
background-size: contain;
margin-left:auto;
margin-right:auto;
display: block;
background-repeat: no-repeat;
background-position: center;
}
And a custom widget, thanks!