I am using SegmentedControl
and for space reasons I limit the length of the label string. The label string is accessed using an expression like this:
{{ item["foo-label"] }}
I would like a tooltip to hold an expression like this:
{{ item["foo-description"] }}
So the user could hover over the label and see the full block of text. But when I try to setup such a tooltip I get the error:
ReferenceError: item is not defined
Is there some workaround or alternative to the SegmentedControl?