Re: simple one

2018-12-29 Thread hbchugo
is true: backgroundColor="{data.estado==0 && 1==1? 0x4776C5:0x855811}" -- Sent from: http://apache-flex-users.246.n4.nabble.com/

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 > > sca

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 }"