<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Flex ListBase scroll vertically error</title>
	<atom:link href="http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/</link>
	<description>Exploring web x.0, innovation and RIA techniques</description>
	<lastBuildDate>Tue, 06 Dec 2011 12:05:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andriy</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-16376</link>
		<dc:creator>Andriy</dc:creator>
		<pubDate>Wed, 27 Apr 2011 18:53:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-16376</guid>
		<description>Adobe livedocs (on Flex 3) say you should call List::validateNow() function after you have changed items in dataprovider to make instant effect.
This is not so curvy, as overriding classes...</description>
		<content:encoded><![CDATA[<p>Adobe livedocs (on Flex 3) say you should call List::validateNow() function after you have changed items in dataprovider to make instant effect.<br />
This is not so curvy, as overriding classes&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaston</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-13795</link>
		<dc:creator>Gaston</dc:creator>
		<pubDate>Fri, 27 Aug 2010 17:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-13795</guid>
		<description>I have a datagrid inside an HBox component. I´m using the Adobe Datagrid class. Can I override that method?

Thanks</description>
		<content:encoded><![CDATA[<p>I have a datagrid inside an HBox component. I´m using the Adobe Datagrid class. Can I override that method?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mika</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-13275</link>
		<dc:creator>Mika</dc:creator>
		<pubDate>Wed, 04 Mar 2009 23:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-13275</guid>
		<description>You save my life Marc !</description>
		<content:encoded><![CDATA[<p>You save my life Marc !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-13272</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Fri, 30 Jan 2009 12:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-13272</guid>
		<description>I also have the same problem,
I am using flex datagrid control and using random text and images into the column itemrenderer(using datagrid as chat window). Everything works fine before scrollbars appear.
When I scroll grid contents up and down,grid rows contents get exchanged i.e. some times top row appear in the middle, sometime it appear in the bottom.This happens with each row of the datagrid. I used the solution in post number 7, but it didn&#039;t work for me.:(

Can someone show me the solution.

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>I also have the same problem,<br />
I am using flex datagrid control and using random text and images into the column itemrenderer(using datagrid as chat window). Everything works fine before scrollbars appear.<br />
When I scroll grid contents up and down,grid rows contents get exchanged i.e. some times top row appear in the middle, sometime it appear in the bottom.This happens with each row of the datagrid. I used the solution in post number 7, but it didn&#8217;t work for me.:(</p>
<p>Can someone show me the solution.</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-13271</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Fri, 23 Jan 2009 05:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-13271</guid>
		<description>Great work Marc, I probably never would have figured that out</description>
		<content:encoded><![CDATA[<p>Great work Marc, I probably never would have figured that out</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sonali</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-13268</link>
		<dc:creator>Sonali</dc:creator>
		<pubDate>Tue, 06 Jan 2009 05:54:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-13268</guid>
		<description>I m getting same error when i m trying to scroll datagrid. I have tried the above given method in my grid class:
override protected function updateDisplayList(w:Number, h:Number):void { 
var b:Boolean = false; 

if( rendererChanged ) b = true; 

super.updateDisplayList(w, h); 
if( b ) { 
while( rowInfo.length &gt; listItems.length ) rowInfo.pop(); 
} 
} 


But its giving me error that 
Access of undefined property : rendererChanged 
Access of undefined property : rowInfo
Access of undefined property : listItems

Can someone tell me about these properties.

Thanks in advance

-Sonali.</description>
		<content:encoded><![CDATA[<p>I m getting same error when i m trying to scroll datagrid. I have tried the above given method in my grid class:<br />
override protected function updateDisplayList(w:Number, h:Number):void {<br />
var b:Boolean = false; </p>
<p>if( rendererChanged ) b = true; </p>
<p>super.updateDisplayList(w, h);<br />
if( b ) {<br />
while( rowInfo.length &gt; listItems.length ) rowInfo.pop();<br />
}<br />
} </p>
<p>But its giving me error that<br />
Access of undefined property : rendererChanged<br />
Access of undefined property : rowInfo<br />
Access of undefined property : listItems</p>
<p>Can someone tell me about these properties.</p>
<p>Thanks in advance</p>
<p>-Sonali.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praneet</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-13252</link>
		<dc:creator>Praneet</dc:creator>
		<pubDate>Thu, 23 Oct 2008 19:30:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-13252</guid>
		<description>Marc:

I have a problem with image distortion..(i.e.) when I scroll the datagrid, the images in each cell go haywire! I tried your solution but I get the following errors..

1120: Access of undefined property rendererChanged
1120: Access of undefined property listItems	
1120: Access of undefined property rowInfo
1120: Access of undefined property rowInfo.

I have an mxml component in which I created a datagrid control and I have a  tag with some methods in them to manipulate the datagrid...I included your workaround in the same script block but when I do..I get the above errors... Please help me out..


thanks,
Praneet</description>
		<content:encoded><![CDATA[<p>Marc:</p>
<p>I have a problem with image distortion..(i.e.) when I scroll the datagrid, the images in each cell go haywire! I tried your solution but I get the following errors..</p>
<p>1120: Access of undefined property rendererChanged<br />
1120: Access of undefined property listItems<br />
1120: Access of undefined property rowInfo<br />
1120: Access of undefined property rowInfo.</p>
<p>I have an mxml component in which I created a datagrid control and I have a  tag with some methods in them to manipulate the datagrid&#8230;I included your workaround in the same script block but when I do..I get the above errors&#8230; Please help me out..</p>
<p>thanks,<br />
Praneet</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cuk</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-12531</link>
		<dc:creator>cuk</dc:creator>
		<pubDate>Thu, 17 Apr 2008 21:56:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-12531</guid>
		<description>The solution worked perfectly even for DataGrids in Flex 2.0.1. Thanks a lot!!!!</description>
		<content:encoded><![CDATA[<p>The solution worked perfectly even for DataGrids in Flex 2.0.1. Thanks a lot!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johto</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-11115</link>
		<dc:creator>Johto</dc:creator>
		<pubDate>Wed, 12 Mar 2008 17:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-11115</guid>
		<description>Yes can someone explain wat &quot;add to grid class&quot; means? I have a List component and the same problem is happening!</description>
		<content:encoded><![CDATA[<p>Yes can someone explain wat &#8220;add to grid class&#8221; means? I have a List component and the same problem is happening!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.wietseveenstra.nl/blog/2007/03/flex-listbase-scroll-vertically-error/comment-page-1/#comment-11091</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 11 Mar 2008 16:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.wietseveenstra.nl/blog/?p=59#comment-11091</guid>
		<description>Can someone please explain how to carry out the solution in post number 7 i.e Add this function to your grid class:

I am not sure what the grid class refers to.

I am experiencing problems with my datagrid whereby if I click on the scroll bar on the area behind the drag bar, the datagrid messes up and text from one row overlaps that of another. Content of the datagrid is also appearing out side the datagrid area below the datagrid.

I really need a solution of this badly!

Thanks

Paul</description>
		<content:encoded><![CDATA[<p>Can someone please explain how to carry out the solution in post number 7 i.e Add this function to your grid class:</p>
<p>I am not sure what the grid class refers to.</p>
<p>I am experiencing problems with my datagrid whereby if I click on the scroll bar on the area behind the drag bar, the datagrid messes up and text from one row overlaps that of another. Content of the datagrid is also appearing out side the datagrid area below the datagrid.</p>
<p>I really need a solution of this badly!</p>
<p>Thanks</p>
<p>Paul</p>
]]></content:encoded>
	</item>
</channel>
</rss>

