Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread OmPrakash Muppirala
On Tue, Nov 12, 2013 at 8:27 PM, Alex Harui aha...@adobe.com wrote: Hi Om, Looks good. Some points to ponder: 1) Ideally, in a Pay-as-you-go philosophy, a rolloverIndex would not be in the ArraySelectionModel since, in theory, ArraySelectionModel should be reusable in mobile devices where

[FLEXJS] WatcherBase error checking

2013-11-13 Thread Erik de Bruin
Hi, In the JS version of the WatcherBase class wrapUpdate method there is a significant amount of error handling that seems to be a literal translation of the AS side. On the JS side, since the error argument in the catch statement isn't typed at all, I don't see where the 'errorID' property

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-13 Thread Erik de Bruin
I have a local branch in which I've made the FalconJx 'goog' compiler apply to the strictest possible rules/flags. This resulted in 193 warnings about bad code in the DataBindingTest example. Hidden behind those were some more errors ;-) Is it an option you can turn on and off? Customer's may

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-13 Thread Erik de Bruin
I've published a 'develop_strictest' branch on both the 'flex-asjs' and 'flex-falcon' projects. These need to live together to make the magic happen. I fixed as much of the warnings as was possible given our setup. There are now 32 warnings left when publishing 'DataBindingTest', most seem

Unable to get children from VBox

2013-11-13 Thread Seema Makkar
Hello all, This is very simple example, I want to get child from click method through rawChildren but giving null values. Below is the implementation, please help. I need to add List at runtime. ?xml version=1.0 encoding=utf-8? s:Application xmlns:fx=http://ns.adobe.com/mxml/2009;

[FLEXJS] ItemRenderers

2013-11-13 Thread Peter Ent
Hi, I've pushed code to get custom itemRenderers working. Many thanks to Alex and Erik for their work getting the foundation parts to work smoothly. I studied the changes Erik made in hopes of making the code I was working on conform, especially around interfaces. Things seem to work ok with a

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Alex Harui
On 11/13/13 8:25 AM, Erik de Bruin e...@ixsoftware.nl wrote: One thought is that we might store both the 'name' and the 'qName' in the class metadata (where currently only the interfaces - if any - live) and adopt the 'getValue' routines to search that instead of the entire namespace chain.

Re: [FLEXJS] ItemRenderers

2013-11-13 Thread Erik de Bruin
Peter, I'm pretty sure I fixed this and created tests to keep an eye on it. Did you get the latest FalconJx code and do a clean build? EdB On Wed, Nov 13, 2013 at 5:30 PM, Peter Ent p...@adobe.com wrote: Hi, I've pushed code to get custom itemRenderers working. Many thanks to Alex and

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Alex Harui
On 11/13/13 10:23 AM, OmPrakash Muppirala bigosma...@gmail.com wrote: On Wed, Nov 13, 2013 at 10:16 AM, Erik de Bruin e...@ixsoftware.nl wrote: That sounds like a good place to start. Ideally the test would be a project we all work on, or a project we all extend and use as a reference, next

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Erik de Bruin
That sounds like a good place to start. Ideally the test would be a project we all work on, or a project we all extend and use as a reference, next to our own projects. I have been thinking of creating a 'kitchen sink' app for FlexJS that would double as a public example as well. I am

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-13 Thread Erik de Bruin
One thought is that we might store both the 'name' and the 'qName' in the class metadata (where currently only the interfaces - if any - live) and adopt the 'getValue' routines to search that instead of the entire namespace chain. This would get rid of the need for the dreaded '__proto__' as

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread Alex Harui
On 11/13/13 8:17 AM, Peter Ent p...@adobe.com wrote: On 11/13/13 3:19 AM, OmPrakash Muppirala bigosma...@gmail.com wrote: On Tue, Nov 12, 2013 at 8:27 PM, Alex Harui aha...@adobe.com wrote: Hi Om, Looks good. Some points to ponder: 1) Ideally, in a Pay-as-you-go philosophy, a

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread OmPrakash Muppirala
On Wed, Nov 13, 2013 at 11:37 AM, Alex Harui aha...@adobe.com wrote: On 11/13/13 8:17 AM, Peter Ent p...@adobe.com wrote: On 11/13/13 3:19 AM, OmPrakash Muppirala bigosma...@gmail.com wrote: On Tue, Nov 12, 2013 at 8:27 PM, Alex Harui aha...@adobe.com wrote: Hi Om, Looks good.

Question on StringUtil.trim

2013-11-13 Thread Maurice Amsellem
Hi, I have noticed that trim will return a copy of the string argument even if there are no spaces, instead of returning the original string. public static function trim(str:String):String { ... if (endIndex = startIndex) return str.slice(startIndex, endIndex + 1); else

Re: Focusing on TabNavigator tab

2013-11-13 Thread Oleg Konovalov
Works great, Alex. Thanks a lot! Oleg. On Tue, Nov 12, 2013 at 2:59 PM, Alex Harui aha...@adobe.com wrote: setFocus() is about what component will get keyboard input. I think you are using tab to mean a TabNavigator child which is a container which never gets focus. Only some control like

Re: Question on StringUtil.trim

2013-11-13 Thread Alex Harui
On 11/13/13 3:35 PM, Maurice Amsellem maurice.amsel...@systar.com wrote: Hi, I have noticed that trim will return a copy of the string argument even if there are no spaces, instead of returning the original string. Is that intended behavior (maybe for compatibility, or something ...) ? No

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread Alex Harui
On 11/13/13 1:33 PM, OmPrakash Muppirala bigosma...@gmail.com wrote: The usecase here is that there are n Lists (for each column) composed by the DataGrid component. If the users rollsover an on any list, the corresponding itemrenderers in each column must highlight themselves. So, keeping

[ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread Justin Mclean
Hi, For all his hard work the Apache Flex PMC has voted Maurice in as a PMC member. Congratulations Maurice. Thanks, Justin

RE: Question on StringUtil.trim

2013-11-13 Thread Michael A. Labriola
No idea. I was trying to think of any danger of manipulating the returned string if it is the original and not always a copy, but I can't think of anything off-hand. Is it much faster to add the check and return the original? Aren't AS strings immutable anyway? So, the method got a copy to

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread OmPrakash Muppirala
On Nov 13, 2013 8:05 PM, Alex Harui aha...@adobe.com wrote: On 11/13/13 1:33 PM, OmPrakash Muppirala bigosma...@gmail.com wrote: The usecase here is that there are n Lists (for each column) composed by the DataGrid component. If the users rollsover an on any list, the corresponding

Re: Question on StringUtil.trim

2013-11-13 Thread Alex Harui
On 11/13/13 8:23 PM, labri...@digitalprimates.net labri...@digitalprimates.net wrote: No idea. I was trying to think of any danger of manipulating the returned string if it is the original and not always a copy, but I can't think of anything off-hand. Is it much faster to add the check and

[VOTE][RESULT] Apache Flex guidelines

2013-11-13 Thread Justin Mclean
Hi, The vote has passed with 11 +1 binding votes. +1 voters: Nicholas Kwiatkowski Maurice Amseliem Jun Heider Frederic Thomas OmPrakash Muppiraia Harbs Gordon Smith Alex Harui Mark Kessier Erik de Bruin Justin Mclean Do we need to notify the board we now have guidelines? Even if that just

Re: Code review please... Re: git commit: [flex-asjs] [refs/heads/develop] - Add functionality to AS version of DataGrid to highlight entire row when rolling over any column JS version to follow after

2013-11-13 Thread Alex Harui
On 11/13/13 8:26 PM, OmPrakash Muppirala bigosma...@gmail.com wrote: I think I get it, but I guess I will need some pseudo code to understand completely. What exactly does 'hang it on a strand' man in this context? Thanks, Om I looked at the commit diffs again. I missed seeing earlier that

[OT] How to contribute to Apache Flex talk in Sydney

2013-11-13 Thread Justin Mclean
Hi, For anyone in the Sydney Australia area I'm giving a talk on how to contribute to Apache Flex at the local Adobe Platform Users Group meetup. http://www.meetup.com/Sydney-Adobe-Platform-User-Group/events/136649902/ Also happy to answer any other question in person on Apache Flex. Thanks,

RE: [ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread Sugan Naicker
Hi, Congrats Maurice! I have been following your posts... Regards, Sugan Naicker Dev-X Digital Solutions (Pty) Ltd South Africa -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: 14 November 2013 06:11 AM To: dev@flex.apache.org Subject: [ANNOUNCE] Welcome

Re: [ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread piotr.zarzycki
Wow! Great news! Congratulations Maurice! :) - Flex/Air developer open to new job offers and challenges. piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/ANNOUNCE-Welcome-Maurice-as-the-newest-PMC-member-tp32214p32223.html

WANT TO OPEN SOURCE MY PROJECT

2013-11-13 Thread Shivang
Hello all... I am a flex guy from last 4 years.I just want to post my project on the apache site so that peoples can see what flex can done..I will open source this but don't know how.. You can check the demo from the link below and give your precious feedbacks..

RE: [ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread Maurice Amsellem
Thanks Justin, Erik, Sugan and Piotr. Thanks to the Flex PMC for accepting me. I will do my best to contribute to Apache Flex thriving. Regards, Maurice -Message d'origine- De : piotr.zarzycki [mailto:piotrzarzyck...@gmail.com] Envoyé : jeudi 14 novembre 2013 08:21 À :

WANT TO OPEN SOURCE MY PROJECT

2013-11-13 Thread Shivang
Hello all.. I am a flex guy from last 4 years.I just want to post my project on the apache site so that peoples can see what flex can done..I will open source this but don't know how.. You can check the demo from the link below and give your precious feedbacks..

Re: [ANNOUNCE] Welcome Maurice as the newest PMC member

2013-11-13 Thread Shivang Gupta
Congrats Maurice.. - Shivang Gupta Skype - sanghi.shivang GTalk - shivangsan...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/ANNOUNCE-Welcome-Maurice-as-the-newest-PMC-member-tp32214p32227.html Sent from the Apache Flex Development