Hi Alex,
Everyone here at Prominic would like to see JIRA being used more for Flex development to track issues. We are very glad to hear that the nightly 0.8.0 build solved the issue Pan reported. This has apparently happened before -- where we have spent > 1 day determining something was a bug, and then another couple of days to re-write code to work around the bug. This time would have been better spent had we known the bug was already on a list and being worked out. As a community, we are up against a wide variety of frameworks. Known bugs should be in bug database. I am sure Google's AngularJS, Microsoft's Xamarin, Facebook's ReactJS or any other mature cross-platform UI SDK are tracking bugs, and FlexJS needs to be doing the same. The overall Apache Flex JIRA appears to be here: https://issues.apache.org/jira/browse/FLEX/?selectedTab=com.atlassian.jira.jira-projects-plugin:summary-panel and the FlexJS 0.8 specified project is here: https://issues.apache.org/jira/browse/FLEX/fixforversion/12338251/?selectedTab=com.atlassian.jira.jira-projects-plugin:version-issues-panel Are we not looking in the right spot, or is the community just not properly documenting bugs? Can Prominic staff get logins to JIRA to help report these? Thank you, Justin Hill My Apache Flex community contribution is working on the open source Moonshine-IDE.com for FlexJS. ----- Forwarded by Justin M. Hill/A55555/PNI on 11/04/2016 12:05 AM ----- To: "dev@flex.apache.org" <dev@flex.apache.org> Date: 11/03/2016 11:33 PM Subject: Re: [FlexJS] Container.numElements is not working Thanks. Please try the nightly 0.8.0 build. It should be fixed already. -Alex > > >platform: Mac OS 10.4; FlexJS 0.7 > >numElements of the UI element Container doesn't work, it can be reproduced >by this code snippet: > ><js:Container id="holder" width="100%" height="100%" > > <js:beads> > <js:VerticalLayout/> > </js:beads> > <js:Label text="fooo"/> > <js:Label text="wooo"/> > <js:Label id="debug" text="tooverride"/> > <js:TextButton text="GO" click="debug.text = String >(holder.numElements)" /> ></js:Container> > >Run it in FlexJS0.7 in javascript or awf mode, it will show "1", but >expected value is 4. > >Similar code in Flex works as expected: > > <mx:Panel id="holder" title="Panel" status="Active" > width="75%" height="75%"> > <s:Label text="fooo"/> > <s:Label text="wooo"/> > <s:Label id="debug" text="tooverride"/> > <s:Button label="GO" click="debug.text = > String >(holder.numElements)" /> > </mx:Panel> > >I also noted the api list of FlexJS's Container is much shorter than >Flex's >Container, does this mean Container of FlexJS is not fully finished? > > >Thanks >Pan LI > > >My Apache Flex community contribution is working on the open source >Moonshine-IDE.com for FlexJS.