Reputation: 9497
This is a screenshot if you put a Menu on a StringField
:
This is a screenshot if you put a Tooltip on a StringField
:
This is a screenshot if you put a Menu and a Tooltip on a StringField
:
(i)
icon from the tooltip is the button to open the menu list.Did I miss something?
Is this a known issue?
Upvotes: 0
Views: 112
Reputation: 303
Yes, this is a known issue. If a tooltip and a menu are provided, a combined popup should be shown including the tooltip text and the menu items. But this has not been implemented yet. Feel free to open a bug.
However, if you only have one action you could set the property hasAction
to true
instead of using a menu. This will bring up a clickable arrow inside the field, actually intended to follow a link or open the email client. But you could also use it for any other action as well, just implement execAction
. Please note that this feature is only available for string fields so far.
StringField with hasAction=true
:
Upvotes: 1