ItemClick Event in a flex Combobox
问题 Does anyone know, is there any way to catch ItemClick Event in a Flex ComboBox (or anything similar). Maybe there's any trick .. :) I do realize, that I can customize it, but this not suits my case. Thanks for your time :) 回答1: As you can see in mx:ComboBox sources, the function, creating the dropdown list, is private, the listener to ITEM_CLICK is private and the list itself is also private: private var _dropdown:ListBase; private function getDropdown():ListBase { // ... _dropdown =