我可以将Flex组件属性绑定到函数吗?

前端之家收集整理的这篇文章主要介绍了我可以将Flex组件属性绑定到函数吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想根据具有一个或多个参数的函数的返回值在按钮上设置enabled属性.我怎样才能做到这一点?
private function isUserAllowed (userName:Boolean):Boolean {
   if (userName == 'Tom')
      return true;
   if (userName == 'Bill')
      return false;
}

<mx:Button label="Create PO" id="createPOButton"
enabled="<I want to call isUserAllowed ('Bill') or isUserAllowed ('Tom') here>"
click="createPOButton_Click()" />

解决方法

<mx:Button
enabled = "{this.myFunction(this.myVariable)}"
>

或内联:

<mx:Button
enabled = "{(function(arg:Object):Boolean{ ... })(this.myVariable)}"
>
原文链接:https://www.f2er.com/flex/174222.html

猜你在找的Flex相关文章