Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-09-02 Thread Alex Harui aha...@adobe.com [flexcoders]
Way more people are probably watching the us...@flex.apache.org list.  You 
might try asking for help there, and if budget permits, offering to pay someone 
to help you.

-Alex

From: "stinas...@yahoo.com [flexcoders]" 
mailto:flexcoders@yahoogroups.com>>
Reply-To: "flexcoders@yahoogroups.com" 
mailto:flexcoders@yahoogroups.com>>
Date: Tuesday, September 2, 2014 9:48 PM
To: "flexcoders@yahoogroups.com" 
mailto:flexcoders@yahoogroups.com>>
Subject: Re: [flexcoders] Re: getting the sum of values in list datafield.



Hey guys, please i need help on this




Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-09-02 Thread stinas...@yahoo.com [flexcoders]
Hey guys, please i need help on this

Re: [flexcoders] Re: getting the sum of values in list datafield.

2014-09-02 Thread stinas...@yahoo.com [flexcoders]
Hey Guys, i still haven't got it to work, plus more bigger problems, i have 
decide to split my application into modules, i each module i have an array 
collection that populates a list in each of the modules, but when i run the 
application, only data in the first module is retrieved and when i load the 
second module, the data is not retrieved (doesn't show up in the list). below 
is the code.

main.mxml
==


http://www.adobe.com/2006/mxml";
layout="vertical"
width="100%"
height="100%"
verticalAlign="top"
verticalGap="0"
paddingTop="0"
paddingBottom="0"
paddingLeft="0"
paddingRight="0"
xmlns:ns2="components.*">































 







dashBoardModule.mxml
==


http://www.adobe.com/2006/mxml";
   layout="horizontal"
   width="100%"
   height="100%"
   xmlns:ns1="ascript.*"
   horizontalGap="0"
   creationComplete="init();"
   initialize="initDate();">









































































































































driversModule.mxml
==


http://www.adobe.com/2006/mxml";
   layout="horizontal"
   width="100%"
   height="100%"
   creationComplete="initOperator()"
   xmlns:ns1="ascript.*">
























when i load the driversModule.mxml first, data is retrieved and data in the 
dashBoardModule.mxml is not retrieved and vise vasa Is there a problem with 
this setup?