如何根据计数是否小于 10 来启用/禁用 mxml 中的按钮
我正在尝试将按钮的启用属性绑定到整数可以获得的最大值。我需要此按钮来允许用户查看下一页,并希望在显示所有组件时禁用此按钮(如计数所示)。
类似于:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下内容将起作用:
刚刚测试过:
The following will work:
Just tested it with:
Adrnans 的答案很准确,但如果您不想使用 XML/Html“<”;那么以下也有效:)
Adrnans answer is spot on, but if you dont wish to use the XML/Html "<"; then the following also works:)