如何在 Flex 表单中设置标签属性的样式?

发布于 2024-10-22 02:07:46 字数 311 浏览 3 评论 0原文

我有带有标签的 FormItems,我希望标签出现在其中的文本输入的顶部而不是左侧,但我不知道我需要去哪里,也不知道我需要什么 CSS 来设置它。

<mx:Form id="myform" defaultButton="{BtnSave}">
  <mx:FormItem label="MyData" required="true">
    <s:TextInput id="dataTextInput" text="{data}"/>
  </mx:FormItem>
</mx:Form>

I've got FormItems with labels, and I'd like for the label to appear on top of the textinput within it rather than to its left, but I don't know where I need to go or what CSS I need to set this.

<mx:Form id="myform" defaultButton="{BtnSave}">
  <mx:FormItem label="MyData" required="true">
    <s:TextInput id="dataTextInput" text="{data}"/>
  </mx:FormItem>
</mx:Form>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七秒鱼° 2024-10-29 02:07:46

我认为使用 MX Forms 不可能做到这一点。我想理论上你可以做这样的事情:

<mx:Form id="myform" defaultButton="{BtnSave}">
  <mx:FormItem required="true" direction="vertical">
    <s:Label text="MyData" />
    <s:TextInput id="dataTextInput" text="{data}"/>
  </mx:FormItem>
</mx:Form>

但是,如果你要这样做,那么为什么要首先使用表格呢?

I don't think this is possible w/ MX Forms. I guess in theory you could do something like this:

<mx:Form id="myform" defaultButton="{BtnSave}">
  <mx:FormItem required="true" direction="vertical">
    <s:Label text="MyData" />
    <s:TextInput id="dataTextInput" text="{data}"/>
  </mx:FormItem>
</mx:Form>

But, If you're going to do that then why bother using the form in the first place?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文