Alex, No, 3.4 didn't solve the problem...
I just got upgraded and came across this nasty bug: http://enigmaticthought.com/2009/09/sdk-2233-flex3-4-httpservice-bug/ Maybe in the next release you get that flicker taken care in data grid header renderers (I'm using factories btw) So I am back to 3.3, since i can't have multiple results etc. Thanks, Patrick --- In [email protected], Alex Harui <aha...@...> wrote: > > File a bug with a simple test case. Also make sure you're using Flex 3.4 > > Alex Harui > Flex SDK Developer > Adobe Systems Inc.<http://www.adobe.com/> > Blog: http://blogs.adobe.com/aharui > > From: [email protected] [mailto:[email protected]] On > Behalf Of djhatrick > Sent: Monday, September 21, 2009 10:17 AM > To: [email protected] > Subject: [flexcoders] Re: Flickering in datagrid Header Renderer while > loading data > > > > I'm having this issue and it sucks. To work around it internally I am adding > a bitmap image-copy of the datagrid inside until it renders completely, which > I've figured on some arbitrary number... > > This really sucks for us developers, makes our projects look unstable... Is > this going to be addressed? I too am using the prescribed method of factories > in the flex cookbook. > > Thanks, > Patrick > > --- In [email protected]<mailto:flexcoders%40yahoogroups.com>, Alex > Harui <aharui@> wrote: > > > > It depends on what you mean by flickering. It would be unusual for a label > > to flicker. Images often do, and SuperImage from quietlyscheming.com can > > help, but if the label if flickering, something else might be the issue. > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc.<http://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > From: [email protected]<mailto:flexcoders%40yahoogroups.com> > > [mailto:[email protected]<mailto:flexcoders%40yahoogroups.com>] On > > Behalf Of Dharmendra Chauhan > > Sent: Monday, March 09, 2009 11:05 AM > > To: [email protected]<mailto:flexcoders%40yahoogroups.com> > > Subject: [flexcoders] Flickering in datagrid Header Renderer while loading > > data > > > > > > I m also facing similar issue,Please see my code below:- > > > > Custom Header Renderer: > > > > [Bindable] > > private var theImage:Class; > > override public function set data(value:Object):void > > { > > dgColumn = value as DataGridColumn; > > if(dgColumn.sortDescending) > > this.theImage = this.downArrow; > > else > > this.theImage = this.upArrow; > > } > > > > ]]> > > </mx:Script> > > > > <mx:Image source="{this.theImage}"/> > > > > > > Image is flicking when data loads in data grid. I also tried Label with > > some text, that to is flicking. > > Everything looks good as soon as data loading is over .Is there any ways to > > avoid this flicker ?? > > > > Please throw some light in to it > > > > Regards, > > Dharmendra > > >

