Hello beautiful minds!
i have tried multiple options, couldn't crack it, can you help me please?
Dear @LaurensM,
Kind Regards,
Frank
Hi @Franklin_vaz,
In case these tags are only displayed for informational purposes and do not need to execute code when selected, the most flexible approach would be using the HTML text control and styling these tags via HTML and inline CSS. I have created a quick example of how you could go about styling the tags below:
//HtmlText property
$"<ul style = 'list-style-type: none; margin: 0; padding: 0;'>
{Concat(Split(ThisItem.Tags, ","), "<li style = 'display: inline-block; background-color: rgba(218, 218, 218, 0.8); padding: 0px 5px 3px 5px; margin: 3px 3px; border-radius: 3px'>" & Value & "</li>")}
</ul>"
Additional info on the HTML text control can be found here.
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!