Re: [2/4] git commit: [flex-asjs] [refs/heads/develop] - LayoutBase Fix for strand set to null in remove bead, plus performance improvements in js

2017-06-12 Thread Peter Ent
Maybe I'm misunderstanding again. This is what a developer should do so that the contents of the panel are laid out horizontally. I constructed Panel as a subclass of Group so that I could take advantage of VerticalFlexLayout so that Container content area of the Panel would grow to

Re: [VOTE] Release Apache FlexJS 0.8.0 RC1

2017-06-12 Thread Peter Ent
I tried the approval XML script. +1 Package https://dist.apache.org/repos/dist/dev/flex/flexjs/0.8.0/rc1/apache-flex-fl exjs-0.8.0-src.tar.gz Java 1.7 OS: Mac OS X x86_64 10.12.5 Source kit signatures match: y Source kit builds: y README is ok: y RELEASE_NOTES is ok: y NOTICE is ok: y LICENSE is

Re: [FlexJS] more on undefined / non initialised values

2017-06-12 Thread Peter Ent
Perhaps we can look to other languages for guidance. For example, in Swift: var val:Boolean is illegal. It MUST be initialized or declared to be optional: var val:Boolean = false var val:Boolean? The Swift people felt that leaving variables uninitialized and defaulted caused too many issues and

Re: [FlexJS] TileLayout

2017-06-22 Thread Peter Ent
Hi, Use margins on the items. ‹peter On 6/22/17, 9:48 AM, "yishayw" wrote: >What is the preferred way to set gaps between columns and between rows? > > > >-- >View this message in context: >https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-fle >x-development.247.n4.nab

Re: [FlexJS] getElementIndex()

2017-06-22 Thread Peter Ent
I was wondering why React keeps its own DOM and why it is so fast. Perhaps this is the reason. On 6/22/17, 10:56 AM, "Alex Harui" wrote: >Feel free to test your theory. It sounds like duplication of work to me >as in: The DOM does have some sort of list so why keep our own? Making >and manipul

Re: [FlexJS] TileLayout

2017-06-22 Thread Peter Ent
You could write a new TileLayoutWithGapAndPadding to handle that specific situation. On the JS side, TileLayout uses Flexbox and perhaps you need more control. ‹peter On 6/22/17, 10:14 AM, "yishayw" wrote: >Adding margins adds a gutter on the right side of the host. This is >probably >because e

Re: [FlexJS,TLF] Tlf branch and Maven build

2017-06-27 Thread Peter Ent
I just added something to TLF branch, in the DragDrop project. There is now a dependency on Collections; does a pom file need to be changed to reflect that or is the compile-swf-config file enough? ‹peter On 6/27/17, 4:41 PM, "Alex Harui" wrote: >I had to update some poms. > >-Alex > >On 6/27/1

[FLEXJS] ASDoc Issues

2017-06-30 Thread Peter Ent
I'm running the asdoc target in flex-asjs and it has rejected a couple of things in Core/main/flex/Promise.as such as: [asdoc] /Users/pent/dev/flex-asjs/frameworks/projects/Core/src/main/flex/Promise.as(270): col: 19 Error: Syntax error: expecting identifier before catch. [asdoc] [a

Re: [FLEXJS] ASDoc Issues

2017-06-30 Thread Peter Ent
Also, it looks like the ASDoc example uses >its own asdic-config.xml file in its src/main/config folder. > >-Alex > >On 6/30/17, 10:25 AM, "Peter Ent" wrote: > >>I'm running the asdoc target in flex-asjs and it has rejected a couple of >>things in Core/m

Re: [FlexJS] findPopupHost issue

2017-07-20 Thread Peter Ent
I'm taking a look at this. Would you mind filing a JIRA on this? Thanks, Peter On 7/19/17, 1:23 PM, "PKumar" wrote: >​Panel , close event not firing on JS side. swf side it is working fine. >This may be an issue.​ > >On Wed, Jul 19, 2017 at 11:00 PM, Prashant Kumar >wrote: > >> ​I am having a

Re: [FlexJS] findPopupHost issue

2017-07-20 Thread Peter Ent
its strand. —peter On 7/20/17, 1:45 PM, "Peter Ent" wrote: >I'm taking a look at this. Would you mind filing a JIRA on this? > >Thanks, >Peter > >On 7/19/17, 1:23 PM, "PKumar" wrote: > >>​Panel , close event not firing on JS side. swf side it is wor

Re: [FlexJS] findPopupHost issue

2017-07-21 Thread Peter Ent
I needed events to bubble for the drag and drop work. While that was fine for the Flash Player, the FlexJS/Google/Browser event mix didn't work. Alex suggested I used setParentTarget on the event to work up the tree and then the event would be dispatched at each level, thus mimicking bubbling. I di

Re: [FlexJS]TileLayout

2017-07-24 Thread Peter Ent
I just left things as open as possible as I recall. Thanks Harbs. On 7/23/17, 6:06 AM, "Harbs" wrote: >Agreed, but I think the defaults should match Flash between and HTML. > >He did not set stretch. Nothing was set. ³stretch² is the default css. > >> On Jul 23, 2017, at 12:23 PM, Alex Harui >>

[FlexJS] MouseEvent

2017-07-25 Thread Peter Ent
mouse event values? SWF: flexJSMouseEvent.screenX = swfMouseEvent.stageX; JS: flexJSMouseEvent.screenX = jsMouseEvent.pageX; Thanks. Peter Ent Adobe Systems/Apache Flex Project

Re: [FlexJS] MouseEvent

2017-07-25 Thread Peter Ent
ck out my browser-event branch for my attempt to make MouseEvents and >KeyboardEvents behave the way you¹d expect. > >I¹m currently struggling with figuring out how to make artificially >created MouseEvents behave properly. Maybe we should compare notesŠ > >Harbs > >> On Jul 25, 20

Re: [FlexJS] ClippingViewport

2017-07-30 Thread Peter Ent
I must have forgotten to delete that. Peter > On Jul 30, 2017, at 7:20 AM, Harbs wrote: > > Is anyone using ClippingViewport? > > It seems to be extraneous at this point. Viewport does clipping by default. > > Thanks, > Harbs

Re: FlexJS Express Components

2017-08-07 Thread Peter Ent
You make good points. The Express package is in its infancy. I packaged things together that were, I felt, the most common combinations, such as all Views and Container classes have data binding. This also means Containers have scrolling with the idea that you would use Group if you did not want s

Re: [DISCUSS} Fork FlexJS from Apache Flex

2017-08-29 Thread Peter Ent
FlexJS. And many other ideas will come from this. I feel the opportunity to turn a negative into a positive is a huge one and doing this now is the best time. Regards, Peter Ent Adobe Systems/Apache Flex(JS) Project >

[FlexJS] Finding (x,y) position

2017-08-29 Thread Peter Ent
Hi, While working on drag-and-drop, I've made an "interesting" discovery having to do with the HTML-side's x and y getter functions. Let's say you have a nesting of s: … … (this structure is similar to what is generated for DataGrid). If you attem

Re: [FlexJS] Finding (x,y) position

2017-08-30 Thread Peter Ent
ishay Weiss" wrote: >Peter, > >Is PointUtils.localToGlobal() not working for you? From what I understand >it takes approach (1). > >From: Peter Ent<mailto:p...@adobe.com.INVALID> >Sent: Tuesday, August 29, 2017 11:29 PM >To: dev@flex.apache.org<mailto:dev@flex.apache.org> &

Re: [FlexJS] Finding (x,y) position

2017-08-30 Thread Peter Ent
at you’re saying. I think we worked around that issue in our app >by relying on MouseEvent.clientX, MouseEvent.clientY. But let’s hear >other ideas for a more complete solution. > >From: Peter Ent<mailto:p...@adobe.com.INVALID> >Sent: Wednesday, August 30, 2017 4:48 P

Re: [VOTE] Fork FlexJS from Apache Flex

2017-09-01 Thread Peter Ent
+1 (Binding) Peter Ent Adobe Systems On 9/1/17, 6:08 AM, "Christofer Dutz" wrote: >-1 (Binding) > >As I mentioned, I cannot support this proposal as is as I was excluded >from the PMC of the Fork. > >Chris > >On 2017-09-01 08:28, Alex Harui wrote: >>

Re: Build failed in Jenkins: flex-asjs #2539

2017-09-03 Thread Peter Ent
As far as I can tell I merged it. I'm not seeing anything missing from my end. Does it look like I messed up the merge? ‹peter On 9/3/17, 6:58 AM, "Piotr Zarzycki" wrote: >Hi Peter, > >Does Drag and Drop branch was merged into develop ? > >Thanks, >Piotr > >2017-09-03 11:55 GMT+02:00 : > >> See

Re: Build failed in Jenkins: flex-asjs #2539

2017-09-03 Thread Peter Ent
ok.com/?url=https%3A%2F%2Fpaste.apa >che.org%2FllyY&data=02%7C01%7C%7C440bfe3a1e55479f3b5008d4f2bd5a06%7Cfa7b1b >5a7b34438794aed2c178decee1%7C0%7C0%7C636400342465482556&sdata=BqK2avxwMlmN >WXKd4foDK4X9DGZGA%2F8omG90%2FlTPEJY%3D&reserved=0 > >Thanks, Piotr > >2017-09-

Re: Build failed in Jenkins: flex-asjs #2539

2017-09-03 Thread Peter Ent
;I just committed a fix for that. > >Harbs > >> On Sep 3, 2017, at 2:55 PM, Peter Ent wrote: >> >> Thanks for helping me. I don't see anything wrong on my end. The problem >> seems to be with the JS side building ExpessJS but I don't see there is >>

home.apache.org

2017-09-13 Thread Peter Ent
Hi, Does anyone have the instructions on how to set up access to your home.apache.org space? I've looked on the apache.org site and all I can find are instructions about the old people.apache.org. I guess I haven't accessed my home.apache.org since I set up my newer computer. I'm going to upda

Re: home.apache.org

2017-09-13 Thread Peter Ent
member your passphrase. > >-Alex > >On 9/13/17, 9:16 AM, "Peter Ent" wrote: > >>Hi, >> >>Does anyone have the instructions on how to set up access to your >>home.apache.org space? I've looked on the apache.org site and all I can >>find

Re: home.apache.org

2017-09-13 Thread Peter Ent
l go out for coffee and I hope it works when I get back. —peter On 9/13/17, 1:22 PM, "Mark Thomas" wrote: >On 13/09/2017 18:05, Peter Ent wrote: >> I get permission denied (public key). I remember having to set up >> something for the old people site (I think) and have be

Re: home.apache.org

2017-09-13 Thread Peter Ent
ion denied. Maybe that's not a real PGP key. I looked up PGP for the Mac and found GPG Keychain which it says makes OpenPGP keys. Just very confused. —peter On 9/13/17, 3:15 PM, "Mark Thomas" wrote: >On 13/09/17 19:27, Peter Ent wrote: >> Thanks, Mark. >> >> I thi

Re: [DISCUSS] Name of the FlexJS Fork

2017-09-13 Thread Peter Ent
Let's say we change the Apache PROJECT name to something else that's a bit more generic and without the JS. I think its important that people who have Flex apps be able to do a Google search and find our new project and on that project's main page we have a statement about Apache Flex and the purp

Re: home.apache.org

2017-09-13 Thread Peter Ent
Ah, OK. Somewhere I mixed up SSH with SFTP and thinking that SFTP required PGP. I'll delete the PGP and redo the SSH private key. —peter On 9/13/17, 4:12 PM, "Mark Thomas" wrote: >On 13/09/17 21:00, Peter Ent wrote: >> My LDAP entry at id.apache.org has a Op

Re: home.apache.org

2017-09-13 Thread Peter Ent
Success! Thanks for clarifying that. —peter On 9/13/17, 4:12 PM, "Mark Thomas" wrote: >On 13/09/17 21:00, Peter Ent wrote: >> My LDAP entry at id.apache.org has a OpenPGP Public Key Primary >> Fingerprint set. I assume when I do sftp p...@home.apache.org it looks &g

Re: [VOTE] Should the Project Name of the Proposed Fork be FlexJS?

2017-09-14 Thread Peter Ent
No (binding) On 9/14/17, 11:37 AM, "Dave Fisher" wrote: >VOTE Should the Project Name of the Proposed Fork be FlexJS? > >[ ] Yes - The forked project should be Apache FlexJS. >[ ] No - The forked project should have another name which will be >discussed. >[ ] Abstain - Don¹t care what the forked

Re: [DISCUSS] Name of the FlexJS Fork

2017-09-14 Thread Peter Ent
If the project name were to be "Apache Royale" and produced FlexJS, and the Apache Royale web page/wiki referenced FlexJS and made it available for Google searches, then anyone who was interested in or heard about FlexJS and searched for "FlexJS" (or "Flex" or "Adobe Flex" or "Apache Flex" or "Acti

Re: [VOTE] What should be the new Project Name for Proposed fork of FlexJS?

2017-09-18 Thread Peter Ent
1) Royale (binding) 2) Braid ‹peter ent On 9/17/17, 3:19 PM, "Piotr Zarzycki" wrote: >Hi, > >In this thread I've gathered list of names proposition for fork of FlexJS >project. > >LIST: > >Royale >Boja >Strand >Bead >Limber >Boinga >Bra

Re: [DISCUSS] Name of the FlexJS Fork

2017-09-19 Thread Peter Ent
I'm inclined to favor "Braid" over Limber (however you want to spell it) because I can think of too many puns associated with Limber and the first thing that comes to mind, for me, is cheese that smells. I don't remember how to pronounce "Borja" and while English always seems to dominate, English-

Re: [DISCUSS] Name of the FlexJS Fork

2017-09-19 Thread Peter Ent
I swear all the good names are already taken. I think we just need to throw letters into a box and shake them at this point. ‹peter On 9/19/17, 3:48 PM, "Harbs" wrote: >Helix is nice. > >Possible conflict: >https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.helixs >dk.org%2F&dat

Re: Royale is now an Apache Project

2017-09-21 Thread Peter Ent
1) royale-asjs just so we can expand later if needed. I like royale-compiler. 2) Let's get off of SVN! ‹peter On 9/21/17, 11:42 AM, "Alex Harui" wrote: >We have to decide a few more things for setup: > >1) our current repos are named flex-asjs, flex-typedefs, etc. I assume we >want them renamed

Re: FlexJS element setter

2017-09-26 Thread Peter Ent
The setter for element is in HTMLElementWrapper, the super class for UIBase. The setter for flexes_wrapper is in UIBase. So if the element setter were to also set the flexjs_wrapper, it would have to be an override in UIBase to do it. At least that¹s how I understand it. Could you elaborate a litt

Re: FlexJS element setter

2017-09-26 Thread Peter Ent
be a getter (which normally returns >the element) that’s overridden for classes which need a different one. >That will save memory for every IUIBase created. > >Harbs > >> On Sep 26, 2017, at 3:23 PM, Peter Ent wrote: >> >> The setter for element is in HTMLElementW

Re: FlexJS element setter

2017-09-26 Thread Peter Ent
different one. >That will save memory for every IUIBase created. > >Harbs > >> On Sep 26, 2017, at 3:23 PM, Peter Ent wrote: >> >> The setter for element is in HTMLElementWrapper, the super class for >> UIBase. The setter for flexes_wrapper is in UIBase. So if t

Re: FlexJS element setter

2017-09-26 Thread Peter Ent
IUIBase object has a positioner set. I don’t >>>know >>> of a single class which has a different positioner than the element. It >>> seems to me that positioner should be a getter (which normally returns >>>the >>> element) that’s overridden for classes wh

[Royale] Flex2Royale Migration App

2017-10-17 Thread Peter Ent
I have made a change the royale compiler (not committed yet) to produce a migration commendation JSON file. This file is then used by the Flex2Royale example app (also not committed). You can see the result at: http://home.apache.org/~pent/Flex2RoyaleApp/ This is pretty much the same thing as b

Re: git commit: [flex-utilities] [refs/heads/develop] - Fix path to ant flexTasks.jar

2017-10-25 Thread Peter Ent
Have you been able to build any of the examples in royale-asjs/examples/royale? When I try to build DataBindingExample, it fails because it cannot find flexTasks.tasks. The build.xml is setting FLEX_HOME to ROYALE_HOME which it sets to the royale-asjs directory. There is no flexTasks.tasks in roya

Re: git commit: [flex-utilities] [refs/heads/develop] - Fix path to ant flexTasks.jar

2017-10-25 Thread Peter Ent
part. ‹peter On 10/25/17, 10:33 AM, "Peter Ent" wrote: >Have you been able to build any of the examples in >royale-asjs/examples/royale? When I try to build DataBindingExample, it >fails because it cannot find flexTasks.tasks. > >The build.xml is setting FLEX_HOME to RO

Re: [VOTE] Release Apache Flex SDK Installer 3.3 - RC2

2017-11-09 Thread Peter Ent
+1 I had no trouble at all following the instructions, launching the installer, and building the SDK. Running macOS Sierra. ‹peter On 11/8/17, 2:57 PM, "Piotr Zarzycki" wrote: >Hi Folks, > >This is official thread for Vote to approve Apache Flex SDK Installer >version 3.3 to be released. > >It'

Re: [DISCUSS] Release Apache Flex SDK 4.16.1 - RC1*

2017-11-10 Thread Peter Ent
I'm trying the AppoveSDK.xml script. When I do: ant -f ApproveSDK.xml -Drelease.version=4.16.1 I get the following: Buildfile: /Users/pent/Downloads/ApproveSDK.xml write-out-jars-list: [delete] Deleting: /Users/pent/Downloads/jars.txt install-rat.jar: install-rat.tasks.jar: install-rat:

Re: [DISCUSS] Release Apache Flex SDK 4.16.1 - RC1*

2017-11-10 Thread Peter Ent
leasecandidate.xml scripts because >> they would have put the right command-line in the vote thread emails. >> IMO, it would be better to get these scripts working so they save >> everybody time and hassle. >> >> -Alex >> >> On 11/10/17, 8:22 AM, "Pe

Re: [DISCUSS] Release Apache Flex SDK 4.16.1 - RC1*

2017-11-10 Thread Peter Ent
After getting the Approval script running and going through the license files, etc., the whole thing ended with: osmf-check: osmf-download: download-osmf-swc: [get] Getting: https://sourceforge.net/adobe/flexsdk/code/HEAD/tree/trunk/frameworks/libs/ OSMF2_0.swc?format=raw [get] To:

Re: [DISCUSS] Release Apache Flex SDK 4.16.1 - RC2*

2017-11-16 Thread Peter Ent
Hi Piotr, Looks like a similar issue is happening to the royale-asjs executables. What did you do to fix this for the release? Thanks, ‹peter On 11/15/17, 9:28 AM, "Piotr Zarzycki" wrote: >Hi Maxim, > >Thank you for checking! :) > >Piotr > >2017-11-15 15:26 GMT+01:00 Maxim Solodovnik : > >> Bo

Re: [VOTE] Release Apache Flex SDK 4.16.1 - RC2

2017-11-20 Thread Peter Ent
-1 ApproveSDK.xml I used both Java 1.8 and Java 1.7. The script fails on the osmf.xml download again. macOS 10.12.6 Peter Ent On 11/15/17, 4:15 AM, "Piotr Zarzycki" wrote: >Hi Folks, > >This is a Apache Flex SDK 4.16.1 release candidate 2 Please see the >RELEAS

Re: [DISCUSS] Release Apache Flex SDK 4.16.1 - RC2*

2017-11-20 Thread Peter Ent
The osmf download still fails for me. I tried Java 1.8 and Java 1.7 since someone in an email thread said that seemed to be the issue. I am going on vacation for the US Thanksgiving holiday and will be back next week. Regards, Peter On 11/15/17, 4:16 AM, "Piotr Zarzycki" wrote: >Hi Folks, > >Pl

Re: [DISCUSS] Release Apache Flex SDK 4.16.1 - RC2*

2017-11-20 Thread Peter Ent
lease is >>going >>to take much longer. >>I'm wondering why Alex didn't have such problems... >> >>Happy Thanksgiving! >>Piotr >> >> >>2017-11-20 19:41 GMT+01:00 Peter Ent : >> >>> The osmf download still fails fo

Re: [VOTE] Release Apache Flex SDK 4.16.1 - RC2

2017-11-20 Thread Peter Ent
+1 The problem on my part which caused the failure of the installation. Once corrected the install completed and I was able to verify it. Regards, Peter On 11/20/17, 1:40 PM, "Peter Ent" wrote: >-1 > >ApproveSDK.xml >I used both Java 1.8 and Java 1.7. The script

Re: [FlexJS] Links, ToggleSwitch and Image Questions

2016-10-26 Thread Peter Ent
The purpose of the Mobile project was to provide code that works mainly with either Cordova or AIR. Some components were meant to mimic iOS or Android (which I am not familiar with at all) such as the Stacked and Tabbed view navigators. Other components are typically found on mobile devices and mig

Re: FlexJS] ComboBox Broken in JS

2016-11-07 Thread Peter Ent
Thanks. I'll take a look at it. ‹peter On 11/7/16, 10:05 AM, "yishayw" wrote: >Filed a bug here > >https://issues.apache.org/jira/browse/FLEX-35169 > > > > >-- >View this message in context: >http://apache-flex-development.247.n4.nabble.com/FlexJS-ComboBox-Broke >n-in-JS-tp56338.html >Sent f

[FlexJS] Team Page

2016-11-10 Thread Peter Ent
d their profile. Regards, Peter Ent Adobe Systems/Apache Flex Project

Re: [FlexJS] Team Page

2016-11-11 Thread Peter Ent
ind of examples. I think that this could be a >great scenario to introduce what we was talking in other thread about gaps >between items. >Do you have something already done it in this example? if not could you >add >it as a part of the polish? > >thanks! > >Carlos &g

Re: [FlexJS] Team Page

2016-11-13 Thread Peter Ent
I should be checking in the flow layout that will put multiple items on a line within the next day or so. Peter > On Nov 12, 2016, at 11:07 AM, Carlos Rovira > wrote: > > It's in examples folder/TeamPage > > 2016-11-12 16:41 GMT+01:00 PKumar : > >> this is really inspiring. could you ple

Re: FlexJS] ComboBox Broken in JS

2016-11-14 Thread Peter Ent
see if it has the same problem; DataBindingExample uses DropdownList. Thanks, Peter Ent Adobe Systems/Apache Flex Project On 11/7/16, 10:58 AM, "Peter Ent" wrote: >Thanks. I'll take a look at it. >‹peter > >On 11/7/16, 10:05 AM, "yishayw" wrote: > >

Re: FlexJS] ComboBox Broken in JS

2016-11-16 Thread Peter Ent
Thanks. I am looking into this today. Any luck trying this with DropdownList? I'm wondering if we need both controls. ‹peter On 11/16/16, 12:08 AM, "yishayw" wrote: >Added info in bug report. Thanks. > > > >-- >View this message in context: >http://apache-flex-development.247.n4.nabble.com/

Re: FlexJS] ComboBox Broken in JS

2016-11-16 Thread Peter Ent
Thanks. I found the cause of the problem: when the list is to be re-displayed, the elements in the list are supposed to be removed, but they are not and so the number of items in the drop list keeps growing with each appearance. The items aren't repeated, just blank slots are appearing. The element

Re: flex-typedefs git commit: add goog.DEBUG for debug-only code

2016-11-21 Thread Peter Ent
What are the requirements for getting flex-asjs to compile with goog.DEBUG? Is there a new version of google closure required or an environment var to be set? When I do an ant build in flex-asjs I get this error: [compc] /Users/pent/dev/flex-asjs/frameworks/projects/Language/src/main/flex/org/ap

Re: flex-typedefs git commit: add goog.DEBUG for debug-only code

2016-11-21 Thread Peter Ent
That did the trick. Thanks. ‹peter On 11/21/16, 4:08 PM, "Alex Harui" wrote: > > >On 11/21/16, 12:01 PM, "Peter Ent" wrote: > >>What are the requirements for getting flex-asjs to compile with >>goog.DEBUG? Is there a new version of google closur

Re: [FlexJS] MDL List problems

2016-11-21 Thread Peter Ent
I had an issue today with ComboBox and its model not being present on the JS side; it was building SWF only. Maybe something similar is happening for List since you mention labelField which should be part of the model List uses. Just an idea, but its odd that you get a similar error to what I had t

Re: [FlexJS] MDL List problems

2016-11-21 Thread Peter Ent
IDataProviderItemRendererMapper: ClassReference("org.apache. >> flex.html.beads.DataItemRendererFactoryForArrayData"); >> IItemRendererClassFactory: ClassReference("org.apache.flex.core. >> ItemRendererClassFactory"); >> IItemRenderer: ClassRefer

Re: [FlexJS]js:List

2016-12-01 Thread Peter Ent
There are beads designed for Array (the default set) and ArrayList. You need to change the data provider and selection models to match. There is code that does something like: dataProvider is Array and that will be null when the dataProvider is an ArrayList so the code will just return from that fu

Re: [FlexJS] (Att: Peter Ent) Get rid of extra divs layers we don't want (was Re: [FlexJS]Layout problems)

2016-12-01 Thread Peter Ent
I'll look into this tomorrow. Peter On Dec 1, 2016, at 7:09 PM, Carlos Rovira wrote: >> >> Anyway, Peter might be able to better answer your question, but it appears >> that if you create some new subclass of UIBase and have it return 'this' >> for layoutHost and contentView, that the ListV

Re: [FlexJS] (Att: Peter Ent) Get rid of extra divs layers we don't want (was Re: [FlexJS]Layout problems)

2016-12-02 Thread Peter Ent
y which shows a simpler List without the nesting. ‹peter On 12/1/16, 7:40 PM, "Peter Ent" wrote: >I'll look into this tomorrow. > >Peter > > >On Dec 1, 2016, at 7:09 PM, Carlos Rovira wrote: > >>> >>> Anyway, Peter might be able to bette

[FlexJS] Team Page

2016-12-02 Thread Peter Ent
Hi, If you go to: http://flex.apache.org/team/ you'll see a Flex Team page created using FlexJS. Still needs a bit more styling and polish. This is driven by a JSON file. Take a look and let me know your thoughts. The code is in flex-asjs/examples/flexjs/TeamPage. Peter Ent Adobe Sy

Re: [FlexJS] (Att: Peter Ent) Get rid of extra divs layers we don't want (was Re: [FlexJS]Layout problems)

2016-12-02 Thread Peter Ent
crete classes being used instead of interfaces. Let me know if this seems more like what you are looking for. —peter On 12/2/16, 12:48 PM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" wrote: >excelent Peter! I'll be waiting for this :) > >2016-12-02 15:47 GMT+01:

Re: [FlexJS] (Att: Peter Ent) Get rid of extra divs layers we don't want (was Re: [FlexJS]Layout problems)

2016-12-02 Thread Peter Ent
I've checked in a new example: flex-asjs/examples/flexjs/ListExample. Let me know if this is close to what you are looking for. —peter On 12/2/16, 3:41 PM, "Peter Ent" wrote: >I have something working now. It took a bit more doing than I'd like, but >it is relatively

Re: [FlexJS] Team Page

2016-12-05 Thread Peter Ent
s looks like a great use case for an MDL-Card component [1] as a >> container for each team member. If no one gets to it before me, I will >> take a shot at it! >> >> [1] https://getmdl.io/components/#cards-section >> >> Regards, >> Om >> >> On Fri,

Re: Why there are same files exists in multiple places?

2016-12-05 Thread Peter Ent
ore useful functional groups would help. ‹ Peter Ent Adobe Systems/Apache Flex Project On 12/5/16, 6:26 AM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" wrote: >Hi Sankar > >1. Why the 'Basic' and 'HTML' folders when holding almost same files? >> >

Re: [FlexJS] Team Page

2016-12-05 Thread Peter Ent
hovering over the element. > >On Dec 2, 2016, at 8:56 PM, Peter Ent wrote: > >> Hi, >> >> If you go to: http://flex.apache.org/team/ you'll see a Flex Team page >>created using FlexJS. Still needs a bit more styling and polish. This is >>driven by a JSON

Re: [FlexJS] Slider valueChange not working

2016-12-05 Thread Peter Ent
I just noticed this email. I have started to look into Slider. It was an early component, like ComboBox, and needs a little bit of work to bring it back to life. ‹peter On 12/2/16, 5:49 PM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" wrote: >I'd want to bring this again since I think i

Re: [FlexJS] Team Page

2016-12-05 Thread Peter Ent
I updated the TeamPage code in the flex-asjs/examples/flexjs area to use the component instead of a TextButton. Still have to push it out to the main website, but you can build it and look at it there. —peter On 12/5/16, 10:59 AM, "Peter Ent" wrote: >That's a good point. I

Re: [FlexJS] Slider valueChange not working

2016-12-06 Thread Peter Ent
l.com on behalf of Carlos Rovira" wrote: >Great Peter, I'll be waiting to follow your changes onto MDL version > >Thanks for taking care of this! > >2016-12-05 17:41 GMT+01:00 Peter Ent : > >> I just noticed this email. I have started to look into Slider. It was

Re: [FlexJX][Falcon] Binding support fixes/improvements

2016-12-06 Thread Peter Ent
I have assigned the JIRA issue to myself and will be looking into this. ‹peter On 12/6/16, 1:11 AM, "sankar" wrote: >Can Peter or anyone from Apache dev suggest where the present development >stays for runtime data update to DataGrid component, or even any specific >beads way already available,

Re: [FlexJS] Flash Only Beads

2016-12-07 Thread Peter Ent
I believe the original intent was that beads like SolidBackgroundBead and SingleLineBorderBead weren't going to be "exposed" for use by developers. Rather, they support CSS background-color and border styles for the SWF side. For example, if you have a Container and give it those styles, FlexJS aut

[FlexJS] ComboBox

2016-12-09 Thread Peter Ent
r ComboBox now so you can give that a try. Peter Ent Adobe Systems/Apache Flex Project

Re: [FlexJS] ComboBox

2016-12-09 Thread Peter Ent
Thanks for the details. I know we can include the assets, I'm just not show how we [will] do it with FlexJS build files; and I'll take a look at this. ‹peter On 12/9/16, 12:07 PM, "Jeffry Houser" wrote: > > >On 12/9/2016 9:57 AM, Peter Ent wrote: >> Hi, >&

Re: [FlexJS] Is there a way to auto-select row in DataGrid?

2016-12-12 Thread Peter Ent
dataProvider, but maintains their own state (as I recall). Perhaps they should share more or all of the same state. After all, if you select item 3, you want each list to select its own item 3. You should file a bug so this gets cleaned up. Peter Ent Adobe Systems/Apache Flex Project On 12/11/16, 11

Re: [FlexJS] About Component Cycle and Events

2016-12-14 Thread Peter Ent
My experience with bead-writing is that if your bead has no dependencies on other beads, then doing your set up in the strand-setting is the easiest. If your bead needs to know another bead exists, typically a view bead, then in the strand-setter, ask for that bead using strand.getBeadByType(). I

[FlexJS] StringItemRenderer

2016-12-14 Thread Peter Ent
re are cases where would be preferred over for StringItemRenderer and I'll work something else out for DateChooser. Thanks, Peter Ent Adobe Systems/Apache Flex Project.

Re: Moonshine 1.3.0 Release

2016-12-15 Thread Peter Ent
My installation of Moonshine failed - twice. I'm running macOS Sierra, 10.12.1. The first time, I got the dialog saying Moonshine needed SDKs and to install the Helper. The Helper downloaded and installed. Then Moonshine reported it could not find any SDKs and put up a dialog box about using Java

Re: [FlexJS] About Component Cycle and Events

2016-12-15 Thread Peter Ent
Having done a bunch of these, I'd like to propose something a little controversial. A new class, BaseBead, from which all Beads derive (you can choose not to do this in your custom beads, just implement IBead). BaseBead has: public function set strand(value:IStrand):void {Š} public function get

Re: Moonshine 1.3.0 Release

2016-12-15 Thread Peter Ent
chines/jdk1.7.0_75.jdk/Contents/Home LANG=en_US.UTF-8 XPC_FLAGS=0x0 XPC_SERVICE_NAME=0 SHLVL=1 HOME=/Users/pent LOGNAME=pent _=/usr/bin/env —peter On 12/15/16, 11:21 AM, "Peter Ent" wrote: >My installation of Moonshine failed - twice. > >I'm running macOS Sierra, 10

Re: [FlexJS] About Component Cycle and Events

2016-12-15 Thread Peter Ent
On 12/15/16, 12:33 PM, "Alex Harui" wrote: > > >On 12/15/16, 8:22 AM, "Peter Ent" wrote: > >>Having done a bunch of these, I'd like to propose something a little >>controversial. >> >>A new class, BaseBead, from which all Beads

Re: (FLEX-35212) [FlexJS] DataGrid requires a way to select it's row(s) automatically

2016-12-15 Thread Peter Ent
;> Project: Apache Flex >> Issue Type: Improvement >>Affects Versions: Apache FlexJS 0.8.0 >>Reporter: Santanu Karar >>Assignee: Peter Ent >> Fix For: Apache FlexJS 0.8.0 >> >> >> At pres

Re: Moonshine 1.3.0 Release

2016-12-15 Thread Peter Ent
Thanks for help, Joel. Making the modification of the loaded SDK did the trick. I was able to run the HelloWorld example. I will try to run Moonshine more often now. ‹peter On 12/15/16, 3:33 PM, "JoelProminic" wrote: >Hi Peter, > >I retested the Java 8 text, and it looks like this field is read

Re: (FLEX-35197) [FlexJS] Data-binding is broken or not implemented in DataGrid component

2016-12-16 Thread Peter Ent
nding is broken or not implemented in DataGrid component >> >> >> Key: FLEX-35197 >> URL: https://issues.apache.org/jira/browse/FLEX-35197 >> Project: Apache Flex >> Issue Type: Question >>Affec

[FlexJS] Image on JS platform

2016-12-16 Thread Peter Ent
I'm trying to use and no image is being loaded. Looking at the ImageBase.as code, I don't see how the image src is making it to the element that has been created. Is there a part I'm missing or is something disconnected? I'm happy to fix it, I just didn't want to undo something that should be

Re: [FlexJS] Image on JS platform

2016-12-16 Thread Peter Ent
I meant url. I did not use src. On 12/16/16, 2:39 PM, "Yishay Weiss" wrote: >Have you tried url instead of src? > > > >From: Peter Ent<mailto:p...@adobe.com> >Sent: Friday, December 16, 2016 9:23 PM >To: dev@flex.apache.org<mailto:dev@flex.apache.org&

Re: [FlexJS, MDL] Help with MDL

2016-12-19 Thread Peter Ent
Can you try the slider in flexjs/manualtests/FlexJSTest_Panel? I used that example to get Slider to work and to produce valueChange events on both SWF and JS. For both SWF and JS, the Slider is composed for two Buttons. On the JS side, the buttons are styled to look like a thumb (rectangle, I'm af

[FlexJS] Building with Maven

2016-12-21 Thread Peter Ent
I've decided a goal for the New Year is to use maven more and make use of the work that has been done. I've followed the instructions on the Apache FlexJS wiki, but have run into an error. In flex-falcon, I do: mvn -s settings-template.xml -DskipTests clean install and get the following error (

Re: [FlexJS] Building with Maven

2016-12-21 Thread Peter Ent
No. This is a pretty clean directory. I never work on flex-falcon so its 100% from the repo. ‹peter On 12/21/16, 11:10 AM, "piotrz" wrote: >Hi Peter, > >Do you have some flash builder project file in falcon folder or any other >file which is not part of the repository? > >Rat may complain cause

Re: [FlexJS] Building with Maven

2016-12-21 Thread Peter Ent
Got a little help from Alex. Seems the clean step didn't purge all of the old files. I guess periodically one should delete the repo and get it again, just to remove stale things. So now maven builds falcon cleanly. ‹thanks. On 12/21/16, 11:48 AM, "piotrz" wrote: >I thinkg rat.txt should point

Re: [FlexJS] Added ListExample and DateControlsExample to the maven build

2016-12-26 Thread Peter Ent
Thanks. That was my fault. Much appreciated. Peter > On Dec 25, 2016, at 11:26 AM, Christofer Dutz > wrote: > > Hi guys, > > I noticed two new examples which weren’t automatically built by the maven > build. I fixed that ... now they should build with all the other modules. > While List

Re: [FlexJS][Discuss] About DataGrid -> MDL Table

2017-01-03 Thread Peter Ent
Hi (back from vacation here in the US), The FlexJS html.DataGrid is indeed composed of Lists which sit inside a scrollable Viewport so they all scroll together. The DataGrid beads take care of synchronizing the selection and produce a single change event. The header is a ButtonBar. The DataGridCo

  1   2   3   4   5   6   7   >