Andora, Greg wrote:
Can anybody tell me why this isn't working and how to make it work? I'm trying to get the formItem below to display all on one line, it doesn't seem to matter how wide the application is, it is always displaying incorrectly (with the checkbox, label, and comboBox all on different lines).
I think FormItem doesn't support direction="horizontal". Put the stuff into a HBox:
<mx:FormItem id="fiPTO" label="PTO"> <mx:HBox> ... </mx:HBox> </mx:FormItem>
Manish

