A designer has requested a 2 line form label.
FormItem's label property instantiates a descendent of <mx:Label>. And
obviously, <mx:Label> supports only single line text (or single line htmlText).
I looked at the source on FormItem.as. Before putting time in to extend
FormItem, I am posting here to see if anyone else may have developed a solution
that they would share?
Short of that, following is an embarrassing hack:
<mx:FormItem direction="horizontal" label="Phone Number:" >
<mx:TextInput id="phoneNumber" />
</mx:FormItem>
<mx:FormItem label="(optional)" paddingTop="-15" height="0" />
Thanks