Show combobox without its active selection

The blueprint code you show on that image always clears the combobox once a valid value is set, so it is expected not to show Ultra in the box.

Is there no way to get an acceptable style with the combobox alone, without clearing the value?

You could play a bit with a SizeBox widget around it, see if you can cut off the text of the ComboBox by forcing the XY size to 30px30px?

*Edit
here is a clever one. If my suggestion of cutting the text with a SizeBox does not look pixel perfect, you can always show a non interactable image on top of that:

How to disable text on a combobox.

so you get something like:

Sizebox (force 30 px X Y)
-- Overlay (full area of parent):
---- Image (arrow icon, full area of parent, not hit testable)
---- ComboBox (hit testable, full area of parent, set to visible but is not actually visible under the Image.)
1 Like