Can't get Flex binding to work without warnings

2015-07-14 Thread kamcknig
I'm trying to get some databinding working and it keeps throwing warnings. I have the following MXML (PSEUDO CODE): Repeater id=deRep dataProvider={dependantXML} Text ... text=quot;{deRep.currentItem..RELATIONSHIP.@dep_cust_rel_type}quot; ... / TextArea ...

RE: Can't get Flex binding to work without warnings

2015-07-14 Thread Kunal Jaura
Hi, Have tried making the dataProvider variable 'dependantXML' bindable? I've had that work for me. Cheers Kunal Jaura | Director of Architecture | www.CRMantra.com  | office +1 (415) 839 9672 | mobile +1 (415) 272 4868 | kunal.ja...@crmantra.com  -Original Message- From:

RE: Can't get Flex binding to work without warnings

2015-07-14 Thread kamcknig
Hi! Yes its already set to be Bindable Best On Jul 14, 2015 3:58 PM, Kunal Jaura [via Apache Flex Users] ml-node+s246n10755...@n4.nabble.com wrote: Hi, Have tried making the dataProvider variable 'dependantXML' bindable? I've had that work for me. Cheers Kunal Jaura | Director of

typicalItem doesn't resizing Spark List on Windows

2015-07-14 Thread pol2095
Hello, typicalItem doesn't resizing Spark List on Windows. http://apache-flex-users.246.n4.nabble.com/file/n10753/TypicalItem.png Thanks -- View this message in context: http://apache-flex-users.246.n4.nabble.com/typicalItem-doesn-t-resizing-Spark-List-on-Windows-tp10753.html

Re: Can't get Flex binding to work without warnings

2015-07-14 Thread Alex Harui
Try: {XMLList(deRep.currentItem)..RELATIONSHIP.@dep_cust_rel_type} And {XMLList(deRep.currentItem).ADDRESS.@street} -Alex On 7/14/15, 12:13 PM, kamcknig kamck...@gmail.com wrote: I'm trying to get some databinding working and it keeps throwing warnings. I have the following MXML (PSEUDO

Re: Can't get Flex binding to work without warnings

2015-07-14 Thread pkumar.flex
Use proper type casting of repeater current item as (deRep.currentItem as XML) On Wed, Jul 15, 2015 at 12:43 AM, kamcknig [via Apache Flex Users] ml-node+s246n10754...@n4.nabble.com wrote: I'm trying to get some databinding working and it keeps throwing warnings. I have the following