[flexcoders] AdvancedDataGrid Performance Issue

2011-08-09 Thread steveroger_flex
Hello Friends, I am using AdvancedDataGrid to represent statistical data. I am creating AdvancedDataGrid column at runtine. Also assigning renderer at runtime. (Using this Reference http://tech.groups.yahoo.com/group/flexcoders/message/161737 ) Actually performance issue occurs when number of

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread jitendra jain
I noticed one strange behaviour.. When i switch my view state, the PopUpAnchor still remains opened.. Any idea?   Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 From: jitendra jain jitendra_jain_2...@yahoo.com To:

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread Alex Harui
PopUpAnchor is a child of the skin or container. On 8/8/11 10:58 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote: Alex, I want the PopUpAnchors and not the popups.. Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 From: Alex Harui

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread Alex Harui
I’m not clear that PopUpAnchor listens for state changes unless you set it up to do so. On 8/8/11 11:03 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote: I noticed one strange behaviour.. When i switch my view state, the PopUpAnchor still remains opened.. Any idea? Thanks, with

[flexcoders] Re: AdvancedDataGrid Performance Issue

2011-08-09 Thread steveroger_flex
I found one thing after doing some experiment with my application. Slow performance is not happen due to column number exceed. It happens after initializing dataprovide of ADG. Renderer will create performance problem with ADG. Renderer handling some graphic (background Font) operation depend

Re: [flexcoders] s:DropDownList selectedItem

2011-08-09 Thread Isabelle Loyer Perso

[flexcoders] Filtering multilingual text within a datagrid filter column

2011-08-09 Thread Myadi H
Hello guys, I need your quick and very important suggestion. How to filter multilingual text? For example- In japanese, hiragana and katagana fonts will take 2 bytes to specify each charecter. when you type text in japanese language say 'A' it writes as 'A ' i.e., a space after text. What if

[flexcoders] Re: How to debug PHP side in AIR applications?

2011-08-09 Thread enridp
Hi johannes, I think I can't catch what you said, my projects are separated of course, but the problem, from what I see, is that the PHP debugger needs a browser (because it adds a lot of query strings for sessions and php debugging). In AIR we don't have any browser, I have my PHP project, I

Re: [flexcoders] s:DropDownList selectedItem

2011-08-09 Thread Isabelle Loyer Perso

Re: [flexcoders] Re: How to debug PHP side in AIR applications?

2011-08-09 Thread Johannes Nel
I have a different setup from you, but I debug my java backends without a problem wether I make my request in air, ajax or flex. A php project is a request response model, so no matter what initiates the request you should be able to put a breakpoint in your code. Your url request in air can

[flexcoders] Re: AdvancedDataGrid Performance Issue

2011-08-09 Thread steveroger_flex
now, I have remove all renderer code of ADG. ADG is displaying data without any formating. But Still its too too slow. Application struck at that point. any idea about this? Steve --- In flexcoders@yahoogroups.com, steveroger_flex steveroger_flex@... wrote: I found one thing after doing

[flexcoders] Advanced Item Editor in Simple List

2011-08-09 Thread Martin Moschitz
Hey there, I can't figure out the problem, maybe you can help me out. My List has an ArrayCollection as a DataProvider. It contains objects with a number of properties, amongst others: AktID, AktName, AktPrice, etc. I have an itemRenderer which is also the itemEditor. I set the

RE: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Philip Smith
You can inject certain kinds of dependencies as long as they don’t drag in UIComponent. Can you provide an example of this, Alex? To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Mon, 8 Aug 2011 22:13:34 -0700 Subject: Re: [flexcoders] Inject dependency into Flex application

Re: [flexcoders] Re: AdvancedDataGrid Performance Issue

2011-08-09 Thread Alex Harui
Use the profiler to see what is going on. On 8/9/11 6:57 AM, steveroger_flex steveroger_f...@yahoo.com wrote: now, I have remove all renderer code of ADG. ADG is displaying data without any formating. But Still its too too slow. Application struck at that point. any idea about this?

Re: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Alex Harui
Public class MyDownloadProgressBar extends SparkDownloadProgressBar { private var injectedClass:MyInjectClass; } On 8/9/11 9:35 AM, Philip Smith loudj...@hotmail.com wrote: You can inject certain kinds of dependencies as long as they don’t drag in UIComponent. Can you provide an

RE: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Philip Smith
We'd like to inject some values into the application preloader instance: s:Application preloader=com.storefront.editorhost.app.CustomPreloader Is it possible to do something like this hypothetical example: (application.preloader as CustomPreloader).preloaderModel = new PreloaderModel(); Or

Re: [flexcoders] Advanced Item Editor in Simple List

2011-08-09 Thread Alex Harui
Is this an mx:List? It will attempt to write the dataField to the labelField. You may need a custom ITEM_EDIT_END handler. On 8/9/11 8:04 AM, Martin Moschitz mar...@moschitz.at wrote: Hey there, I can't figure out the problem, maybe you can help me out. My List has an ArrayCollection

Re: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Alex Harui
The preloader is instantiated long before the application. The app’s preloader property isn’t used at runtime, the compiler generates special code for it. A preloader can certainly examine its environment and do different things. There are a few custom preloaders on my blogs. On 8/9/11

RE: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Philip Smith
But in essence, going back to your example, there is no capacity to inject 'MyInjectClass' with a public setter? Public class MyDownloadProgressBar extends SparkDownloadProgressBar { private var _injectedClass:MyInjectClass; private var _preloaderModel:PreloaderModel; public

Re: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Alex Harui
You can write your code like that, but what code would set those values? None of the MVC frameworks I know of are running when the preloader is running. That’s the point of the preloader. It is framework independent and very lightweight so you can view something while the rest of the

RE: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Philip Smith
A preloader that could be dropped into multiple projects and configured using dependency injection would be a useful feature imo, one that wasn't necessarily dependent on a full blown MVC framework. To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Tue, 9 Aug 2011 11:11:12 -0700

Re: [flexcoders] Re: How to debug PHP side in AIR applications?

2011-08-09 Thread Pete
Hi there, I use Nusphere PHPEd and when set up properly it works well, every time. This is using amfphp to make remote procedure calls btw. It can be on a remote server, with the dbg extension installed, or on localhost (I use xampp). I have found that the only safe way to break into the

[flexcoders] Re: Flex View States

2011-08-09 Thread nikunj_n123
Thank you for your response. I cannot put my form in the pop up window. That could have solved the problem. Anyways, I worked around it by creating and destroying the form myself , depending on the state and checking for a condition if the state is still the same. --- In

Re: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Alex Harui
Dependency Injection still takes code and increases initial download. You can certiainly have configurable reusable preloaders. The slideshow preloader on my blog is an example. Its config comes from the HTML wrapper. On 8/9/11 11:50 AM, Philip Smith loudj...@hotmail.com wrote: A

Re: [flexcoders] Re: AdvancedDataGrid Performance Issue

2011-08-09 Thread Rishi Tandon
You mean that using a adg with 20 columns degrade the performance? My question How many adg are u using? What's the no of rows for each adg? Have u used paging? Sent from my iPhone On Aug 9, 2011, at 10:33 PM, Alex Harui aha...@adobe.com wrote: Use the profiler to see what is going on.

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread jitendra jain
Alex.. Thanks I have resolved my problem, but want to ask you a question...(may be sounds funny for u ;) )..How to know that a specific component is a skin or control..?   Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 From: Alex Harui

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread Alex Harui
If it has a “hostComponent” property? On 8/9/11 10:54 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote: Alex.. Thanks I have resolved my problem, but want to ask you a question...(may be sounds funny for u ;) )..How to know that a specific component is a skin or control..? Thanks,