RE: Bubbling to a Grandparent

2014-12-08 Thread Prabhu Moorthy
You can remove the change event listener from A.mxml file. Listen the event in Grandparent Example.mxml file as /asDG.aAs.addEventListener(ChangeA.CHANGED, asDG_aChangedHandler);/ But in A.mxml file dispatch the same event when datagrid change. Once again you need to add event listener in Grandpar

Re: Does any one have experience of working on Anychart?

2014-12-08 Thread vijendra sainy
Please read data to date Thanks for reply. In my case I need to update the *data* 3 times in a second. On Tue, Dec 9, 2014 at 8:47 AM, vijendra sainy wrote: > Hey Tom, > > Thanks for reply. In my case I need to update the date 3 times in a > second. In that case the performance simply drops. I

Re: Does any one have experience of working on Anychart?

2014-12-08 Thread vijendra sainy
Hey Tom, Thanks for reply. In my case I need to update the date 3 times in a second. In that case the performance simply drops. I am using AnyStockChart.appendData(csv) and AnyStockChart.commitDataChanges(); to update the data. Your suggestion is valuable, Please share your thoughts. On Mon, De

Datagrid functions with objects with objects

2014-12-08 Thread CodeGirl
I have a datagrid with a datagrid column. Except the data object contains a data object. For instance the object may be id:int transaction:Transaction and Transaction id:int accountid:int Notice since the datagrid is based upon the object that the datafield is transaction.accountid

Re: result Handler fires but last result does not contain the correct data in Actionscript file

2014-12-08 Thread CodeGirl
this question stems from my last question. If you look at the example.zip file but add the extend as suggested then debug the set result function you will see what I am saying. Except the example is not using a web service. For some reason this same function return the correct id when in the

Re: result Handler fires but last result does not contain the correct data in Actionscript file

2014-12-08 Thread Alex Harui
It isn’t clear from this what the correct/incorrect info is, and how it was set up to be called? More detail might help. -Alex On 12/8/14, 8:10 AM, "CodeGirl" wrote: >If I have this same function in an mxml file, the last result returns the >correct info but when its in an action script file,

Re: AW: Creating a Jenkins/Maven POM for an existing Flash Develop project

2014-12-08 Thread PeterBridger
Thanks both for your input. Unfortunately I feel like I'm spinning my wheels, unsure of what steps to follow and where to go next. I've deleted the repositories I uploaded to Github, as wasn't aware of this being a problem when I did so. It feels like alchemy attempting to get the right versions

result Handler fires but last result does not contain the correct data in Actionscript file

2014-12-08 Thread CodeGirl
If I have this same function in an mxml file, the last result returns the correct info but when its in an action script file, it does not. Why? is there something I need to do different? protected function setAResult_resultHandler(event:ResultEvent):void {

RE: Bubbling to a Grandparent

2014-12-08 Thread CodeGirl
Why do I need to keep the repeater in A.mxml? I thought bubbling would go all the way to the Grandparent Example.mxml. Or is there a better way? -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Bubbling-to-a-Grandparent-tp8997p9017.html Sent from the Apache Fl

RE: Bubbling to a Grandparent

2014-12-08 Thread CodeGirl
Thanks for the answer. Is there any hit to doing this? Do you know why they didnt just do this as default? I take it the mxml files have this by default -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Bubbling-to-a-Grandparent-tp8997p9016.html Sent from the

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-08 Thread Frédéric THOMAS
> Unfortunately you will only prevent the warning messages. Still maven won't > dresolve the scopes correctly when it comes to transitive dependencies :-( > rely shooting would make it necessary do do greater changes in mavens inner > workings. But it's still a lot better than to have the errors

Re: Flex skin implementing material design out there?

2014-12-08 Thread quick6black
Are you referring to a new skin set for mobile? If so, I agree we should start working material design for mobile. Here is a link to the IOS7 and Android4 skins that we Om and myself has been worki

Re: How to get the content of the html while the flex iframe is loaded with html file?

2014-12-08 Thread Tom Chiverton
On 08/12/14 13:02, sanloflex wrote: Am I trying to access the content so early before the iframe is completely loaded? I assume the *frameLoad* event is triggered only after the html is completely loaded in it. Do I need to have any setTimeout for accessing the html content in the iFrame?

Re: How to get the content of the html while the flex iframe is loaded with html file?

2014-12-08 Thread sanloflex
Hey Tom, I'm loading the html from the server of same domain. No issues in that. But, I'm not getting the loaded html content from the iFrame's content property. It gives null though the iframe is loaded with the html file. Using the loaded html content, I have to change the flex page

Re: Bubbling to a Grandparent

2014-12-08 Thread mprabhu
Hi, Extend the class from EventDispatcher and dispatch the event. public class As extends EventDispatcher { . . . . public function setA(ndx:int):void { this.indx = ndx; aDTO = new ADTO(); aDT

RE: Bubbling to a Grandparent

2014-12-08 Thread Prabu Moorthy
Hi, Change the dispatch event code in As.as. public class As extends EventDispatcher { . . . . public function setA(ndx:int):void { this.indx = ndx; aDTO = new ADTO(); aDTO.id = 502;

Re: How to get the content of the html while the flex iframe is loaded with html file?

2014-12-08 Thread Tom Chiverton
On 08/12/14 09:57, sanloflex wrote: How to determine when the iframe is loaded with the new html content? Right now, I'm using *frameLoad* event and in the handler function, I'm having an idea to analyze the content of the loaded html by using the iframe object's *content* property. Depending

How to get the content of the html while the flex iframe is loaded with html file?

2014-12-08 Thread sanloflex
Hi, In my flex module, I'm loading a html in flex iframe component. The user may click a link in the html to load another html within the same iframe. How to determine when the iframe is loaded with the new html content? Right now, I'm using *frameLoad* event and in the handler function, I'

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-08 Thread Frédéric THOMAS
FYI, I improved it, so, it won't fail anymore.If included in the direct parent pom.xml, will be installed at first build and used on next ones.if declared in the corporate pom.xml or if you do like me, use parent which have their own lifecycles, will be used directly. Btw, what about if I give i

Re: Bubbling to a Grandparent

2014-12-08 Thread mprabhu33
example_working.zip See the attachment. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Bubbling-to-a-Grandparent-tp8997p9005.html Sent from the Apache Flex Users mailing list arc

Re: Does any one have experience of working on Anychart?

2014-12-08 Thread Tom Chiverton
On 06/12/14 03:53, vijendra sainy wrote: I am trying anystock and facing issue with performance. I've used AnyChart in a Flex application, but not AnyStock. We found the key was to avoid redrawing the chart as much as possible - this is common to Flex applications, where you can end up making