Re: Swiz Framework Donation

2013-11-12 Thread Clint Modien
It's also possible (probable?) that he isn't following this thread… has anyone reached out to him via other channels? Alex… does apache require the inked copies on file or are printed digital copies ok? Clint Modien 548 Market St #27385 San Francisco CA 94104 c. 408.489.0750 f. 1.866.253.9401 e.

Re: Focusing on TabNavigator tab

2013-11-12 Thread Oleg Konovalov
I have tried to 1) Google on that subject - could not find anything useful. 2) FocusEnabled = true - did nothing 3) play with FocusManager - did nothing Will see if SelectedIndex will work. Could you please give a context about it? TIA, Oleg. On Tue, Nov 12, 2013 at 12:18 AM, Chris Velevitch

Re: [VOTE] Apache Flex guidelines RC3

2013-11-12 Thread Nicholas Kwiatkowski
+1 (binding) On Mon, Nov 11, 2013 at 6:24 AM, Justin Mclean wrote: > Hi, > > To vote in the guideline on voting as contained in this document (version > 34) and make them the official guidelines. > https://cwiki.apache.org/confluence/display/FLEX/Draft+Guidelines > > Only minor changes from RC2.

Re: Focusing on TabNavigator tab

2013-11-12 Thread Oleg Konovalov
I do dataTabs.addChild(tab). After that how can I do selectedIndex on that tab? On Nov 12, 2013 7:37 AM, "Oleg Konovalov" wrote: > > I have tried to > 1) Google on that subject - could not find anything useful. > 2) FocusEnabled = true - did nothing > 3) play with FocusManager - did nothing > > W

Re: Focusing on TabNavigator tab

2013-11-12 Thread Alex Harui
I'm not sure I understand the problem. A "tab" is a button-like thing along the top of a TabNavigator. It never truly gets focus. The TabNavigator gets focus and arrow keys can be used to switch tabs. A TabNavigator's children are containers, and the containers never get focus. Only their chil

Re: Swiz Framework Donation

2013-11-12 Thread Alex Harui
Adobe sends PDFs to Apache of the manually signed grant form. Saves trees and all that. ;-) On 11/12/13 12:38 AM, "Clint Modien" wrote: >It's also possible (probable?) that he isn't following this threadŠ has >anyone reached out to him via other channels? > >AlexŠ does apache require the inked

Re: [1/4] Initial commit of 'correct' whitespace emission.

2013-11-12 Thread Alex Harui
I'm getting one failure in compiler.jx.tests in org.apache.flex.compiler.internal.codegen.mxml.flexjs.TestFlexJSMXMLApplica tion Is it passing for others? -Alex On 11/12/13 3:05 AM, "erikdebr...@apache.org" wrote: >Updated Branches: > refs/heads/develop 026a53c72 -> dc0c5fe49 > > >http://git

Re: Focusing on TabNavigator tab

2013-11-12 Thread Oleg Konovalov
I am on one tab. Get data, it creates another tab. I want a new tab to get focus, so user can see new data. Tab is a Box with ADG. Gets created by dataTabs.addChild(tab) I tried to do tab.setFocus () and many other things. Still not setting focus on that tab. Using Flex 4.5.1 On Nov 12, 2013 1

Re: Focusing on TabNavigator tab

2013-11-12 Thread OmPrakash Muppirala
On Tue, Nov 12, 2013 at 8:11 AM, Oleg Konovalov wrote: > I do > dataTabs.addChild(tab). > After that how can I do selectedIndex on that tab? > Try dataTabs.selectedIndex = 1; > On Nov 12, 2013 7:37 AM, "Oleg Konovalov" wrote: > > > > > I have tried to > > 1) Google on that subject - could no

Re: [1/4] Initial commit of 'correct' whitespace emission.

2013-11-12 Thread Erik de Bruin
It's passing for me, both in Eclipse and from the terminal (OSX 10.9). What is the test complaining about? EdB On Tue, Nov 12, 2013 at 8:07 PM, Alex Harui wrote: > I'm getting one failure in compiler.jx.tests in > org.apache.flex.compiler.internal.codegen.mxml.flexjs.TestFlexJSMXMLApplica > ti

[FALCONJX/FLEXJS] stricter compilation

2013-11-12 Thread Erik de Bruin
Hi, 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 ;-) I fixed all but a couple in the framework and there are

Re: [1/4] Initial commit of 'correct' whitespace emission.

2013-11-12 Thread Alex Harui
It's not picking up the goog.require("StockDataJSONItemConverter"). I'm cleaning and rebuilding. Hopefully it will just go away. -Alex On 11/12/13 11:40 AM, "Erik de Bruin" wrote: >It's passing for me, both in Eclipse and from the terminal (OSX 10.9). >What is the test complaining about? > >Ed

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-12 Thread OmPrakash Muppirala
On Tue, Nov 12, 2013 at 11:48 AM, Erik de Bruin wrote: > Hi, > > 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

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-12 Thread Alex Harui
On 11/12/13 11:48 AM, "Erik de Bruin" wrote: >Hi, > >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 ;-) I

Re: Focusing on TabNavigator tab

2013-11-12 Thread Alex Harui
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 a TextInput or Button or ADG gets focus If you want an ADG in a new Tabnavigator child to get focus, you should

Re: [1/4] Initial commit of 'correct' whitespace emission.

2013-11-12 Thread Alex Harui
Still failing after clean. Interesting, the test says FAILED, but from the command-line it still thinks the build succeeded. But Eclipse definitely knows it failed. I guess I'll have to dig into it. -Alex On 11/12/13 11:52 AM, "Alex Harui" wrote: >It's not picking up the goog.require("StockD

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-12 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. Let me know if it works for you. EdB On Tue, Nov 12, 2013 at 8:53 PM, OmPrakash Muppirala wrote: > On Tue, Nov 12, 2013 at 11:48 AM, Erik de Br

Re: [1/4] Initial commit of 'correct' whitespace emission.

2013-11-12 Thread Erik de Bruin
Yes, that's the one that I wrestled with the past couple of days. The fix was to change a path to the latest flex-asjs... Peter renamed one of the examples and the test uses a hard coded path to it. EdB On Tue, Nov 12, 2013 at 8:52 PM, Alex Harui wrote: > It's not picking up the goog.require("

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-12 Thread OmPrakash Muppirala
On Tue, Nov 12, 2013 at 12:11 PM, Erik de Bruin wrote: > 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. > > Let me know if it works for you. > > EdB > I havent built falcon in a long time.

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-12 Thread Alex Harui
Run ant wipe-all first? On 11/12/13 3:43 PM, "OmPrakash Muppirala" wrote: >On Tue, Nov 12, 2013 at 12:11 PM, Erik de Bruin >wrote: > >> 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. >>

Re: [FALCONJX/FLEXJS] stricter compilation

2013-11-12 Thread OmPrakash Muppirala
On Tue, Nov 12, 2013 at 4:35 PM, Alex Harui wrote: > Run ant wipe-all first? > > That worked, thanks! Om > On 11/12/13 3:43 PM, "OmPrakash Muppirala" wrote: > > >On Tue, Nov 12, 2013 at 12:11 PM, Erik de Bruin > >wrote: > > > >> I've published a 'develop_strictest' branch on both the 'flex

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 dis

2013-11-12 Thread OmPrakash Muppirala
This is my first real contribution to the FlexJS project. Alex/Peter can you please review this and let me know if I am on the right track? Once you approve, I will start looking at the JS version of the same logic. Thanks, Om On Tue, Nov 12, 2013 at 6:07 PM, wrote: > Updated Branches: > re

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-12 Thread Alex Harui
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 there is no rollover. I honestly don't know what the right answer is. Th