Flex 4 中的数据绑定帮助
我设法使启用的东西正常工作。
<s:Button x="388" y="219" width="180" height="40"
label="Generate Code" fontWeight="bold"
enabled="{(mbUniqueID.text!='')}" />
但我在向启用的按钮添加两个依赖项时遇到问题。如何仅在 mbUniqueID.text 且 mbWinContent.text 不为空时启用此按钮。我想通过数据绑定来做到这一点。我可以通过 AS3 毫无问题地做到这一点,但我想要这种方法。我已成功使 mbUniqueID.text 数据绑定工作。我只需要知道如何使其依赖于两个因素而不是仅依赖于一个因素。
I managed to make the enabled thing work.
<s:Button x="388" y="219" width="180" height="40"
label="Generate Code" fontWeight="bold"
enabled="{(mbUniqueID.text!='')}" />
But I'm having trouble adding two dependencies to the button being enabled. How do I make this button enabled only if mbUniqueID.text and mbWinContent.text is not empty. I want to do this via DataBinding. I can do it without any problems via AS3 but I wanted that approach. I have successfully made the mbUniqueID.text DataBinding work. I just need to know how to make it dependent on two factors instead of just one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用这个:
这不是最好的例子,但它会起作用。
它是如何工作的(三元运算符):
You can use this:
It is not the best example but it will work.
How it works (ternary operator):