Jmini
Jmini

Reputation: 9497

Eclipse Scout Neon: Menu and Tooltip on a field

This is a screenshot if you put a Menu on a StringField:

Eclipse Scout Screenshot with a Menu on a field

This is a screenshot if you put a Tooltip on a StringField:

Eclipse Scout Screenshot with a Tooltip on a field

This is a screenshot if you put a Menu and a Tooltip on a StringField:

Eclipse Scout Screenshot with a Menu and Tooltip on a field

Did I miss something?

Is this a known issue?

Upvotes: 0

Views: 112

Answers (1)

Claudio Guglielmo
Claudio Guglielmo

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:

Eclipse Scout StringField with with hasAction==true

Upvotes: 1

Related Questions