0

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.

zero323
  • 322,348
  • 103
  • 959
  • 935
SadClown
  • 648
  • 8
  • 16

1 Answers1

0

You could accomplish this by editing the MXML file for the following ActionScript, Flex, spark only combo box which is available open source (only one MXML file to edit, so it is simpler than editing <s:ComboBox>).

CQ Bear
  • 396
  • 2
  • 4