如何根据计数是否小于 10 来启用/禁用 mxml 中的按钮

发布于 2024-10-07 12:40:35 字数 268 浏览 3 评论 0原文

我正在尝试将按钮的启用属性绑定到整数可以获得的最大值。我需要此按钮来允许用户查看下一页,并希望在显示所有组件时禁用此按钮(如计数所示)。

类似于:

<mx:Button label="Previous" click="nextHandler()" enabled="{count< 10}">

但是编译器抛出一个错误“<”属性不能在启用的标记中使用。

对此有什么想法吗?

提前致谢。

I am trying to bind enabled property of my button to the maximum value that an integer can attain. I need this button to allow user to view next page and want to disable this button when all the components have been shown (as reflected in count).

Something like :

<mx:Button label="Previous" click="nextHandler()" enabled="{count< 10}">

But the compiler is throwing an error that '<' attribute can not be used in enabled tag.

Any ideas over this ?

Thanks in advance.

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

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

发布评论

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

评论(2

我偏爱纯白色 2024-10-14 12:40:35

以下内容将起作用:

<mx:Button label="Previous" click="nextHandler()" enabled="{count < 10}"/>

刚刚测试过:

    <s:NumericStepper id="count"/>
    <mx:Button label="Previous"  enabled="{count.value < 10}"/>  

The following will work:

<mx:Button label="Previous" click="nextHandler()" enabled="{count < 10}"/>

Just tested it with:

    <s:NumericStepper id="count"/>
    <mx:Button label="Previous"  enabled="{count.value < 10}"/>  
悲念泪 2024-10-14 12:40:35

Adrnans 的答案很准确,但如果您不想使用 XML/Html“<”;那么以下也有效:)

<mx:NumericStepper id="count" x="10" y="15" maximum="20"/>
<mx:Button label="Previous" enabled="{count.value >= 10 ? false : true}" x="10" y="45"/>

Adrnans answer is spot on, but if you dont wish to use the XML/Html "<"; then the following also works:)

<mx:NumericStepper id="count" x="10" y="15" maximum="20"/>
<mx:Button label="Previous" enabled="{count.value >= 10 ? false : true}" x="10" y="45"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文