Is there a way to set my custom made TextInput component (call it CustomTextInput) as textInput property of ComboBox?
I've tried something like this:
<s:ComboBox id="myCombo" dataProvider="{myDP}">
<s:textInput>
<components:CustomTextInput />
</s:textInput>
</s:ComboBox>
It doesn't work, but it could illustrate what I'm trying to do.