Re: simple one

2018-12-14 Thread Willem-Paul Stuurman - RecruitmentTechnologies.com
Hi Scott, just escape any & into  

The binding is basically an XML attribute and & is not allowed in there.

Cheers, 

WP


> On 14 Dec 2018, at 21:10, scott matheson  wrote:
> 
> Hi, not been writing code for a while, how do I add  && in a dynamic binding
> 
> this is the code 
> 
>  scaleX="1" scaleY="1"
> selected="{data.overlapReading}"
> horizontalCenter="0"
> verticalCenter="0"
> visible="{data.accountType != 1 }"
> click="changePlacement(event)"
> skinClass="com.peach.uofs.common.StudentPlacementCheckBoxSkin"/>
> 
> 
> i want  visible="{data.accountType != 1  && data.aPage  }"
> 
> 
> 



Re: simple one

2018-12-14 Thread scott matheson
Thats is  thanks 

> On 14 Dec 2018, at 20:43, kamcknig  wrote:
> 
> You can use encoded ampersands like this:
> 
> visible="{data.accountType != 1  data.aPage  }"
> 
> 
> 
> --
> Sent from: http://apache-flex-users.246.n4.nabble.com/



Re: simple one

2018-12-14 Thread kamcknig
You can use encoded ampersands like this:

visible="{data.accountType != 1  data.aPage  }"



--
Sent from: http://apache-flex-users.246.n4.nabble.com/


simple one

2018-12-14 Thread scott matheson
Hi, not been writing code for a while, how do I add  && in a dynamic binding

this is the code 




i want  visible="{data.accountType != 1  && data.aPage  }"