Flex custom item renderer for the displayed item in the combobox
问题 I am using a custom item renderer in a combobox to display a custom drawing instead of the default text label. This works fine for the dropdown list but the displayed item ( when the list is closed) is still the textual representation of my object. Is there a way to have the displayed item rendered the same way as the one in the dropdown? 回答1: By default you cannot do this. However, if you extend ComboBox you can add this functionality easily. Here is a quick example, it is a rough version