0

我必须在我的应用程序中为必填字段添加 * 标记。我已经通过代码做到了这一点

<mx:VBox>
    <mx:Form>
        <mx:FormItem label="Name" required="true">
            <mx:TextInput id="Name" width="200" editable="true"/>
        </mx:FormItem> 
        <mx:FormItem label="priority" required="true">
            <mx:ComboBox id="priorityId" width="200" cornerRadius="4" dataProvider="{customerPriorityList}" />         
        </mx:FormItem>
    </mx:Form>
<mx:VBox>

但问题是 * 标记靠近文本输入字段或组合框附近。但我只希望根据我的申请在标签附近使用 * 标记。我尽力了,但失败了。有什么办法???

提前致谢...

4

1 回答 1

1

试试这个

<mx:Form width="30%">
    <mx:HBox horizontalGap="0">
        <mx:Label text="First Name"/>
        <mx:Label width="11" color="0xFF0000" text="*"/>
        <mx:Spacer width="20"/>
        <mx:TextInput/>
    </mx:HBox>
</mx:Form>
于 2012-04-23T11:15:55.693 回答