Logic AND, Less Than in mxml
i've been looking equivalent < , && in mxml have value bound bindable variable , checking in button visibility if value greater particular value. greater operator > works, or operator || works less , and not. ? thanks.
ps : in mxml not in actionscript cdata block.
ps : in mxml not in actionscript cdata block.
since it's in xml, need escape them: < use < , && use &&
e.g. show button if x<0 , y<0:
<mx:button visible="{x < 0 && y < 0}" />
e.g. show button if x<0 , y<0:
<mx:button visible="{x < 0 && y < 0}" />
More discussions in Flex (Read Only)
adobe
Comments
Post a Comment