I have been trying out the Callout control in Flex 4.6 to use in a mobile app instead of a combo. The scenario is that you have a TextInput that has a prompt to the user to "Select ..." and when you touch it (iPad) it receives focus and a Callout is populated to allow you to pick from a list.
This works fine when running on a Mac but when I deploy to iPad the focusIn event only seems to fire if the TextInput control has editing turned on. This defeats the purpose since the soft keyboard pops up and also the control is editable when I really just want it to be selected from a list.
The code for the TextInput control is;
<s:TextInput id="txtLocation" x="171" y="149"
enabled="false" editable="false"
height="38" fontSize="16"
prompt="Select ..."
focusEnabled="true"
focusIn="depotCallout.open(this.txtLocation,true)"/>
This code is also in a sample app by Holly Schinsky demonstrating how to use the callout. Any ideas would be appreciated.