actually, still no. 

<mx:Style>      
 FormItem {         
 labelStyleName: labelStyle;       
 }       
 .labelStyle{         
  textAlign: left;       
  }    
</mx:Style>             
  <mx:Form>
  <mx:FormItem label="Name">
    <mx:HBox>
      <mx:TextInput id="firstName1" />
      <mx:TextInput id="lastName1" />
    </mx:HBox>
  </mx:FormItem>
  <mx:FormItem label="Email">
    <mx:TextInput id="email" />
  </mx:FormItem>
  <mx:FormItem label="Fixed Total Charge:"  width="100%">          
         <mx:TextInput id="fixedChg"  width="50%" />         
  </mx:FormItem>  
  <mx:FormItem direction="horizontal" width="100%">
 
        <mx:FormItem label="Fixed Total Charge: aaa" >
<mx:TextInput id="fixedChga"  />
</mx:FormItem> 
          
<mx:FormItem label="Per aaa" >
<mx:TextInput id="perUnita" />
</mx:FormItem>
<mx:FormItem label="Fixed Per Unit Charge aaa">
<mx:TextInput id="perUnitChga"  />
</mx:FormItem> 
  </mx:FormItem>
  <mx:FormItem label="">
    <mx:Button label="Submit" />
  </mx:FormItem>
  
</mx:Form>

see, how fixed total charge (formitem label) and fixed total charge: aaa 
(formitem label) are not vertically aligned? Fixed total charge: aaa (formitem 
label) starts right under the textbox. I need to push it to left a bit more. 


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6126
Subscription: http://www.houseoffusion.com/groups/flex/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37

Reply via email to