Re: [FlexJS] MDL - Dynamic Child Problem

2017-02-18 Thread piotrz
Carlos, I will try to explore it, your focus on AMF is crucial. :) Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Dynamic-Child-Problem-tp59595p59636.html Sent from the Apache Flex Developm

[FlexJS] Support adding items to Lists (MDL TabBar) dynamically

2017-02-18 Thread piotrz
Hi All, I have started to look into problem reported by Sankar for MDL TabBar -> https://issues.apache.org/jira/browse/FLEX-35268 He was trying to add to the TabBar another tab using Array. I looked into the js:List and express:List component whether I can actually do this - It was obvious for me

Re: [FlexJS] Support adding items to Lists (MDL TabBar) dynamically

2017-02-18 Thread Alex Harui
Peter probably knows better than me. I think he was working on supporting changes to an ArrayList. Look in DataProviderChangeNotifier and/or ListSingleSelectionMouseController and examples that use them. HTH, -Alex On 2/18/17, 6:44 AM, "piotrz" wrote: >Hi All, > >I have started to look into p

Re: [FlexJS] SimpleCSSStyles properties

2017-02-18 Thread Alex Harui
On 2/17/17, 11:51 PM, "Justin Mclean" wrote: >Hi, > >> Well, it is all supposed to be PAYG. If your app only needs padding and >> fancy borders and backgrounds, > >Just about all applications are going to need those features IMO. If >every application developer has to implement themselves they

[FlexJS][AMF] branch feature/amf - Starting the effort!! (Special Thanks to PKumar!)

2017-02-18 Thread Carlos Rovira
Hi, just created a branch "feature/amf" to upload the code to support RemoteObject AMF support for FlexJS. I want to notice that *still is not working properly*, but want to check in the code in order to let folks to test and support the effort if (they want). I send data to the server but the fa

[FlexJS] Running FlexJS examples in Tomcat

2017-02-18 Thread Christofer Dutz
Hi, I just committed a little change to the examples maven configuration, that makes it possible to automatically run a tomcat server in the examples directories. So if you want to run MDLExample, all you need to do, is to change to the MDLExample directory and run: mvn tomcat7:run It should

Re: [FlexJS Summit] Preparing the schedule

2017-02-18 Thread Christofer Dutz
Hi Guys, I still need some abstract for some of the talks. It would be great if you could add this on the Wiki page, so I can forward that to the LF for the Schedule. Currently I have everything I need from Justin and Me, but the rest is still missing. I need: - Official Title - Abstract - Spea

Re: [FlexJS] Support adding items to Lists (MDL TabBar) dynamically

2017-02-18 Thread piotrz
Hi Alex, Thank you! That was it. Now I have to add couple of missing things in MDL. :) Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Support-adding-items-to-Lists-MDL-TabBar-dynamically-tp5963

Re: [FlexJS] Running FlexJS examples in Tomcat

2017-02-18 Thread Josh Tynjala
Good idea, Chris! - Josh On Feb 18, 2017 9:59 AM, "Christofer Dutz" wrote: > Hi, > > I just committed a little change to the examples maven configuration, that > makes it possible to automatically run a tomcat server in the examples > directories. > So if you want to run MDLExample, all you nee

Re: [FlexJS Summit] Preparing the schedule

2017-02-18 Thread Justin Mclean
Hi, Plus a 100x100 photo of yourself for the web site please. I’m missing that from everyone. Thanks, Justin

[Flex JS] multiple views?

2017-02-18 Thread Justin Mclean
Hi, This code compile fine but gives a run time error it looks like only view2 exists. I assume an initialView can only have one view? http://ns.adobe.com/mxml/2009"; xmlns:js="library://ns.apache.org/flexjs/basic" applicationComplete="init()">

Re: [FlexJS] SimpleCSSStyles backgroundAlpha not working on JS

2017-02-18 Thread Justin Mclean
Hi, Looking deeper into this issue is seems FlexJS has support for rgb and rgba values but it’s a little broken. In SimpleCSSVAluesImpl parseStyle method this code: if (value.charAt(0) == "#") { obj[pieces[0]] = org.apache.flex.utils.CSSUtils.toColor(value); } Should be somethi

Re: [Flex JS] multiple views?

2017-02-18 Thread Harbs
I think the idea was to swap out the view in initialView at runtime, but multiple children of initialView is not supported. I don’t know that swapping views was ever tested though. Harbs > On Feb 19, 2017, at 2:17 AM, Justin Mclean wrote: > > Hi, > > This code compile fine but gives a run ti