需要有关单选按钮控制的帮助

发布于 2024-10-10 21:20:48 字数 162 浏览 2 评论 0原文

我有一个要求,比如两个带有“是”和“否”选项的单选按钮 以及两个文本区域和一个名为“继续”的按钮。 这里我的要求是当我选择是时它应该只显示继续 按钮,当我选择不选择按钮时,它应该显示两个文本区域 控制和一键控制。

谁能告诉我这个 sol 并为我提供一些示例代码。

问候, 纳文.

I have a requirement like two radio buttons with yes and no options
and two textarea's and one button with name Continue.
Here my requirement is when i select yes it should show only continue
button and when i select no button it should show two textarea
controls and one button control.

Can anybody tell me this sol and provide me with some sample code.

Regards,
Naveen.

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

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

发布评论

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

评论(1

躲猫猫 2024-10-17 21:20:49

简单使用属性“visible”:

<mx:RadioButtonGroup id="radioGroup"/>
<mx:RadioButton id="radioYes"
        groupName="{radioGroup}" value="Yes" selected="true"/>
<mx:RadioButton id="radioNo"
        groupName="{radioGroup}" value="No"/>

<mx:Label text="First text"/>
<mx:TextArea id="textOne"
        visible="{radioNo.selected}"/>
<mx:Label text="Second text"/>
<mx:TextArea id="textTwo"
        visible="{radioNo.selected}" includeInLayout="{radioNo.selected}"/>
<mx:Button id="btnContinue"
        label="Continue"/>

请注意属性“includeInLayout”。在我的解决方案中,一个文本区域被隐藏,不占据任何位置,另一个文本区域被隐藏,但保留保留位置。

Simple use property 'visible':

<mx:RadioButtonGroup id="radioGroup"/>
<mx:RadioButton id="radioYes"
        groupName="{radioGroup}" value="Yes" selected="true"/>
<mx:RadioButton id="radioNo"
        groupName="{radioGroup}" value="No"/>

<mx:Label text="First text"/>
<mx:TextArea id="textOne"
        visible="{radioNo.selected}"/>
<mx:Label text="Second text"/>
<mx:TextArea id="textTwo"
        visible="{radioNo.selected}" includeInLayout="{radioNo.selected}"/>
<mx:Button id="btnContinue"
        label="Continue"/>

Please take attention at property 'includeInLayout'. In my solution one text area is hidden and takes no place, another one is hidden, but keeps reserved place.

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