FALCONSEYE
Programmer
I have the following:
This will put "Per" under "Fixed total charge" text input. How can I align this so that "Per" will be under "Fixed Total Charge" instead of the textbox?
thanks in advance.
Code:
<mx:FormItem label="Fixed Total Charge:" width="100%">
<mx:TextInput id="fixedChg" width="50%" />
</mx:FormItem>
<mx:FormItem width="100%" direction="horizontal" horizontalAlign="left">
<mx:FormItem label="Per">
<mx:TextInput id="perUnit" />
</mx:FormItem>
<mx:FormItem label="Fixed Per Unit Charge">
<mx:TextInput id="perUnitChg" />
</mx:FormItem>
</mx:FormItem>
This will put "Per" under "Fixed total charge" text input. How can I align this so that "Per" will be under "Fixed Total Charge" instead of the textbox?
thanks in advance.