Re: Tour of Heroes(Angular) of Royale version

2018-08-29 Thread Alex Harui
Hi Yu Taro, 2. [Bindable] private var static ary:ArrayList = new ArrayList(["AA","BB","CC"]); That will cause page blankbecause "static" If I must use static, the ArrayList construct must be empty. private var static ary:ArrayList = new ArrayList(); // this work well I tried

Re: Tour of Heroes(Angular) of Royale version

2018-08-18 Thread Carlos Rovira
Hi Taro, I just uploaded the removeAll() example to JewelExample so you can check the code for how to do it. I'll check if we need some more bead of that kind. El sáb., 18 ago. 2018 a las 17:27, Carlos Rovira () escribió: > ok, my fault I was not aware of that beads, I confuse that beads with >

Re: Tour of Heroes(Angular) of Royale version

2018-08-18 Thread Carlos Rovira
ok, my fault I was not aware of that beads, I confuse that beads with others. I'll take a look thanks! El sáb., 18 ago. 2018 a las 17:20, Carlos Rovira () escribió: > Hi Piotr, > > ok that's what I'm using in Jewel. I thought you were talking about > something I was not aware of. So, since it's n

Re: Tour of Heroes(Angular) of Royale version

2018-08-18 Thread Carlos Rovira
Hi Piotr, ok that's what I'm using in Jewel. I thought you were talking about something I was not aware of. So, since it's not working I'll take a look and what can be the problem thanks Carlos El sáb., 18 ago. 2018 a las 14:27, Piotr Zarzycki (< piotrzarzyck...@gmail.com>) escribió: > Hi Carl

Re: Tour of Heroes(Angular) of Royale version

2018-08-18 Thread Piotr Zarzycki
Hi Carlos, All those beads are part of our repository. They should work with Jewel as well [1] [1] https://github.com/apache/royale-asjs/blob/develop/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/DynamicAddItemRendererForArrayListData.as Thanks, Piotr On Sat, Aug 18, 20

Re: Tour of Heroes(Angular) of Royale version

2018-08-18 Thread Carlos Rovira
Hi Taro, El sáb., 18 ago. 2018 a las 7:16, Yu.Taro () escribió: > Hi Carlos > > I just test the sample code with nightly build #1180, that is not work > > The j:HGroup output html source code is as below > > still missing "itemsExpand" in class > I tried it in JewelExample and this is the code

Re: Tour of Heroes(Angular) of Royale version

2018-08-18 Thread Carlos Rovira
Hi Yu Taro El vie., 17 ago. 2018 a las 16:55, Yu.Taro () escribió: > Hi Carlos > I don't have website, and glad to publish it as a full article with the > code. > Great! we need to fix the issues you found and then we can go with the publishing task :) > > > 3. ...ArrayList.removeAll()

Re: Tour of Heroes(Angular) of Royale version

2018-08-18 Thread Carlos Rovira
Hi Alex El vie., 17 ago. 2018 a las 8:37, Alex Harui () escribió: > > 9. If use typeNames attribute, compile debug is ok, but compile release > will miss it. > > I think that should work, although we do not recommend altering typeNames > in application code. Use className instead. TypeNames is

Re: Tour of Heroes(Angular) of Royale version

2018-08-18 Thread Carlos Rovira
Hi Piotr, thanks, can you provide more info about that bead or point me to the code in GitHub link so I can take a look? thanks El vie., 17 ago. 2018 a las 2:50, Piotr Zarzycki () escribió: > Hi Carlos, > > In case of removing from ArrayList something and refreshing list - There > are Beads for

Re: Tour of Heroes(Angular) of Royale version

2018-08-17 Thread Yu.Taro
Hi Carlos I just test the sample code with nightly build #1180, that is not work The j:HGroup output html source code is as below still missing "itemsExpand" in class About "itemsHorizontalExpand" and "itemsVerticalExpand" properties did you mean that in this example if then will background

Re: Tour of Heroes(Angular) of Royale version

2018-08-17 Thread Yu.Taro
Hi Alex About Point 2 Alex Harui-2 wrote > 2. [Bindable] > private var static ary:ArrayList = new ArrayList(["AA","BB","CC"]); > That will cause page blankbecause "static" > If I must use static, the ArrayList construct must be empty. > private var static ary:ArrayList = new A

Re: Tour of Heroes(Angular) of Royale version

2018-08-17 Thread Alex Harui
Hi, Thanks again for the feedback. I may respond with more details later, but very quickly: the ASDoc example is in examples/royale/ASDoc. It uses DataContainer and uses the routing classes. You can see how to determine what the route was in that code. HTH, -Alex On 8/17/18, 7:55 AM, "Yu

Re: Tour of Heroes(Angular) of Royale version

2018-08-17 Thread Yu.Taro
Hi Carlos I don't have website, and glad to publish it as a full article with the code. and about another questions, i will reply soon. Hi Piotr Thanks for the example, I'll study it to learn more about royale. Hi Alex Thanks for your reply. following is my thought 1. ...Try

Re: Tour of Heroes(Angular) of Royale version

2018-08-17 Thread Piotr Zarzycki
, Piotr On Fri, Aug 17, 2018, 8:37 AM Alex Harui wrote: > Answers inline. > > > > *From: *芋頭爛 > *Reply-To: *"users@royale.apache.org" > *Date: *Thursday, August 16, 2018 at 10:10 AM > *To: *"users@royale.apache.org" > *Subject: *Tour of Heroes(Angu

Re: Tour of Heroes(Angular) of Royale version

2018-08-16 Thread Alex Harui
Answers inline. From: 芋頭爛 Reply-To: "users@royale.apache.org" Date: Thursday, August 16, 2018 at 10:10 AM To: "users@royale.apache.org" Subject: Tour of Heroes(Angular) of Royale version Hello, I use royale 0.9.3(nightly) to implement Tour of Heroes(Angular). her

Re: Tour of Heroes(Angular) of Royale version

2018-08-16 Thread Piotr Zarzycki
Hi Carlos, In case of removing from ArrayList something and refreshing list - There are Beads for that purpose. Maybe it is a good subject for blog post. You should go through old examples in our repo. Thanks, Piotr On Fri, Aug 17, 2018, 12:48 AM Carlos Rovira wrote: > I think I fixed Point 7

Re: Tour of Heroes(Angular) of Royale version

2018-08-16 Thread Carlos Rovira
I think I fixed Point 7 Seems, container need width 100% for items to expand to fill all available width. This makes me think if we need to double properties and have "itemsHorizontalExpand" and "itemsVerticalExpand" ? what do you think? I added the property to HGroup as well. Try this with lates

Re: Tour of Heroes(Angular) of Royale version

2018-08-16 Thread Carlos Rovira
I forgot to ask you an important question: Comparing with Angular: *could you let us know you thoughts about both versions? * do you think Royale needs something you miss from working with Angular? (taking into account that we are still bringing more components and features, but I mean from a pure

Re: Tour of Heroes(Angular) of Royale version

2018-08-16 Thread Carlos Rovira
Hi, amazing! Thanks for sharing this work and point us the issues! This will be of great help to see the issues you found and personally is great to see something done with Jewel finally due the amount of work I invested on this UI set in the last months :)) For others, I think the Angular versio

Tour of Heroes(Angular) of Royale version

2018-08-16 Thread 芋頭爛
Hello, I use royale 0.9.3(nightly) to implement Tour of Heroes(Angular). here is live demo https://z3idxk1hh5asgqpvhvftra-on.drv.tw/royale-heroes/# It runs on Chrome well, but IE 11 no good... I find some issue when develop the tour of heroes. 1. Does royale have something like mx:Repeater or s: