Re: User docs entry for strands and beads

2019-01-03 Thread Alex Harui
Actually, I found some time to look and it was quite broken, probably from when we merged platform files. I think it is working now (after the CI server builds it). -Alex On 1/1/19, 8:16 PM, "Alex Harui" wrote: Bummer. I haven’t tested that filter in a long time. It is supposed to fi

Re: User docs entry for strands and beads

2019-01-03 Thread Andrew Wetmore
Well, cool! I will check it later today. Thank you for taking a look. On Thu, Jan 3, 2019 at 5:41 AM Alex Harui wrote: > Actually, I found some time to look and it was quite broken, probably from > when we merged platform files. I think it is working now (after the CI > server builds it). > > -

Jenkins build is back to normal : royale-asjs #1758

2019-01-03 Thread apacheroyaleci
See

CRUD example

2019-01-03 Thread Jairo França
I´m analysing the possibility to migrate from Flex to Royale. How can I find a CRUD example in Royale?

Jenkins build is back to normal : TourDeFlexMigration #334

2019-01-03 Thread apacheroyaleci
See

Re: CRUD example

2019-01-03 Thread Carlos Rovira
Hi Jairo, Check "Tour de Jewel" here: http://royale.apache.org/tourdejewel/ And go to "List" examples to see various example of CRUD (in-client). You can see a "Source Code" button to browse the code and a direct link to GitHub [1] Enjoy! :) Carlos [1] https://github.com/apache/royale-asjs/b

Jenkins build is back to normal : royale-asjs_MXTests #318

2019-01-03 Thread apacheroyaleci
See

Question to jewel Grid

2019-01-03 Thread Piotr Zarzycki
Hi Carlos, If you think that I should post it on the list let me know. However I have a question regarding Grid. I would like to use grid where I have two GridCell. 1. GridCell - Taking 80% of the screen 2. GridCell - Taking 20% of the screen They are displayed one after another. I really cannot

Re: Question to jewel Grid

2019-01-03 Thread Piotr Zarzycki
I initially send that question off list, but it looks like it fits perfectly here :) czw., 3 sty 2019 o 12:38 Piotr Zarzycki napisał(a): > Hi Carlos, > > If you think that I should post it on the list let me know. However I have > a question regarding Grid. I would like to use grid where I have

Build failed in Jenkins: royale-compiler #659

2019-01-03 Thread apacheroyaleci
See -- [...truncated 151.04 KB...] [junit] environment property - FLEX_HOME = null [junit] environment property - PLAYERGLOBAL_HOME = null [junit] e

Re: Question to jewel Grid

2019-01-03 Thread Carlos Rovira
Hi Piotr, Jewel Grid implements a flex grid column layout based on columns. By default is configured to 12 columns (check _layout.sass) $grid-columns: 12 !default you can change this to other value, but doing that will need to change as well GridCellLayout MAX_COLUMNS public static const MAX_CO

Re: Question to jewel Grid

2019-01-03 Thread Piotr Zarzycki
Carlos, I understand now, so I will test your solution. I was using Grid in MDL, but there wasn't two properties to configure one column - there was one, so it was for me more clear than in Jewel Grid. Thank you for help! Piotr czw., 3 sty 2019 o 14:19 Carlos Rovira napisał(a): > Hi Piotr, > >

Re: Question to jewel Grid

2019-01-03 Thread Carlos Rovira
Hi Piotr, MDL is more easy and direct but you get less possibilities. I really didn't invent anything just saw many css frameworks out there and take ideas here and there to implement what I liked more. One thing to notice is all the possibilities in all those framework are pre calculated, this i

[GitHub] cottage14 opened a new pull request #14: Update PAYG.md

2019-01-03 Thread GitBox
cottage14 opened a new pull request #14: Update PAYG.md URL: https://github.com/apache/royale-docs/pull/14 added text This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub an

[GitHub] cottage14 closed pull request #14: Update PAYG.md

2019-01-03 Thread GitBox
cottage14 closed pull request #14: Update PAYG.md URL: https://github.com/apache/royale-docs/pull/14 This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork),

Binding issue with Jewel CheckBox and PopUp

2019-01-03 Thread Carlos Rovira
Hi, I'm facing a binding issue. This is an example from PopUpPlayGround.mxml in Tour de Jewel: if you check the CheckBok, the popup1 opens and the check label shows "open/close the popup: true" then closing the popup, makes the label turns to: "open/close the popup: false" but, here's the p

Re: Binding issue with Jewel CheckBox and PopUp

2019-01-03 Thread Alex Harui
Is a binding being setup for closePopUp? Check the debug .js files to see if that event is listed in the _bindings array. If it is there, debug into it and see if a binding actually gets set up. -Alex On 1/3/19, 10:08 AM, "Carlos Rovira" wrote: Hi, I'm facing a binding issue.

Re: CRUD example

2019-01-03 Thread Alex Harui
Another possibility is if you can make a small example/test in Flex against your server, you can try to migrate that first. Use your data classes, but trim the UI to just accept a few fields and see if you can CRUD it. What is your server connection? HTTPService, RemoteObject, WebService or s

Re: Binding issue with Jewel CheckBox and PopUp

2019-01-03 Thread Greg Dove
Carlos, I tried the example and (so far) I don't see the issue. I get the visual selection state of the checkbox and the text content binding both updating when the popup opens or closes. On Fri, Jan 4, 2019 at 7:27 AM Alex Harui wrote: > Is a binding being setup for closePopUp? Check the debu

Re: Binding issue with Jewel CheckBox and PopUp

2019-01-03 Thread Alex Harui
Greg, I think Carlos is saying the example should work without the check1.selected=false line, but he had to add it to get the example to work. -Alex On 1/3/19, 10:42 AM, "Greg Dove" wrote: Carlos, I tried the example and (so far) I don't see the issue. I get the visual selection stat

Re: Binding issue with Jewel CheckBox and PopUp

2019-01-03 Thread Greg Dove
Thanks Alex, I missed that - will remove it and retest! On Fri, Jan 4, 2019 at 7:56 AM Alex Harui wrote: > Greg, I think Carlos is saying the example should work without the > check1.selected=false line, but he had to add it to get the example to work. > > -Alex > > On 1/3/19, 10:42 AM, "Greg

Jenkins build is back to normal : royale-compiler #660

2019-01-03 Thread apacheroyaleci
See

Re: Binding issue with Jewel CheckBox and PopUp

2019-01-03 Thread Greg Dove
I took a look at this and just pushed a change to ContainerDataBinding that fixes it. On Fri, Jan 4, 2019 at 7:59 AM Greg Dove wrote: > > Thanks Alex, I missed that - will remove it and retest! > > > On Fri, Jan 4, 2019 at 7:56 AM Alex Harui > wrote: > >> Greg, I think Carlos is saying the ex

Re: Binding issue with Jewel CheckBox and PopUp

2019-01-03 Thread Alex Harui
OK, thanks. That made me want to go in and do some refactoring in the code. Changes like that eventually need propagation to the other XXDataBinding classes and we might want to create a MultipleChangeEventDataBinding option. GenericBinding will work for now but it is the heaviest last resort

Re: Binding issue with Jewel CheckBox and PopUp

2019-01-03 Thread Greg Dove
Yeah, I've made a few XXDataBinding propagations in the past, but I don't like doing that blindly and was not ready to test them yet. I realised it was not optimised. But I think its better working than not, and probably the number of bindings with two or more events is low (I expect it is, otherw

Build failed in Jenkins: royale-asjs_MXTests #321

2019-01-03 Thread apacheroyaleci
See -- [...truncated 2.43 MB...] [mxmlc] c:/jenkins/workspace/royale-asjs_MXTests/mustella/tests/mxtests/basicTests/bin/js-debug/mx/controls/DateField.

Re: Binding issue with Jewel CheckBox and PopUp

2019-01-03 Thread Carlos Rovira
Thanks guys for solve this thing!, it was not clear to me if it was some bug in the compiler, in bindings or in Jewel components :) El jue., 3 ene. 2019 a las 23:14, Greg Dove () escribió: > Yeah, I've made a few XXDataBinding propagations in the past, but I don't > like doing that blindly and wa

Jenkins build is back to normal : royale-asjs_MXTests #322

2019-01-03 Thread apacheroyaleci
See