<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Advanced DataGrid as an item renderer within an Advanced DataGrid</title>
	<atom:link href="http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/feed/" rel="self" type="application/rss+xml" />
	<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/</link>
	<description>Not everything about technology, but close....</description>
	<lastBuildDate>Thu, 24 Dec 2009 04:56:05 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sachin Dev Tripathi</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1253</link>
		<dc:creator>Sachin Dev Tripathi</dc:creator>
		<pubDate>Tue, 08 Dec 2009 09:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1253</guid>
		<description>Hi Sameer, I have found one bug in the sample..If innerGrid have more rows than outerGrid then some data will be clipped of innerGrid and it can not scrolls to its last row. 

for testing:You can increase children of last row to 10 and make 8 rows in outerGrid.

Thanks
Sachin</description>
		<content:encoded><![CDATA[<p>Hi Sameer, I have found one bug in the sample..If innerGrid have more rows than outerGrid then some data will be clipped of innerGrid and it can not scrolls to its last row. </p>
<p>for testing:You can increase children of last row to 10 and make 8 rows in outerGrid.</p>
<p>Thanks<br />
Sachin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sameer</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1234</link>
		<dc:creator>Sameer</dc:creator>
		<pubDate>Fri, 06 Nov 2009 12:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1234</guid>
		<description>Hi Sachin,
When you open any row, the grid is invalidated because there are some changes like the rows tweening and the scroll bar may appear/disappear, etc.. That&#039;s why, the labelFunction is executed again.</description>
		<content:encoded><![CDATA[<p>Hi Sachin,<br />
When you open any row, the grid is invalidated because there are some changes like the rows tweening and the scroll bar may appear/disappear, etc.. That&#8217;s why, the labelFunction is executed again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DevSachin</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1224</link>
		<dc:creator>DevSachin</dc:creator>
		<pubDate>Mon, 02 Nov 2009 05:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1224</guid>
		<description>No, i am not using labelfunction for grouping or outer grid. Instead, i am only using it for inner grid. but if i open an inner grid for a row and then opens another inner grid for another row then label function calls for both the grid. main thing is labelFunction is calling for N number of times and N is more than rows in a grid.
You can test it in your own example because i have used same example for testing.</description>
		<content:encoded><![CDATA[<p>No, i am not using labelfunction for grouping or outer grid. Instead, i am only using it for inner grid. but if i open an inner grid for a row and then opens another inner grid for another row then label function calls for both the grid. main thing is labelFunction is calling for N number of times and N is more than rows in a grid.<br />
You can test it in your own example because i have used same example for testing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sameer</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1222</link>
		<dc:creator>Sameer</dc:creator>
		<pubDate>Sat, 31 Oct 2009 04:07:14 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1222</guid>
		<description>Do you want to apply labelFunction to the group nodes only?
For that you can use groupLabelFunction.

And inside the inner grid, you can use labelFunction which will apply only to the inner grid.</description>
		<content:encoded><![CDATA[<p>Do you want to apply labelFunction to the group nodes only?<br />
For that you can use groupLabelFunction.</p>
<p>And inside the inner grid, you can use labelFunction which will apply only to the inner grid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DevSachin</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1221</link>
		<dc:creator>DevSachin</dc:creator>
		<pubDate>Fri, 30 Oct 2009 09:10:37 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1221</guid>
		<description>There is a problem:
label function is executing for all the opened inner grids every time.for ex: if you have expanded first row already and then you expand second row .so, label function will excutes for both the grids n number of time.

 So if i have a condition on label function for a specific inner grid so it goes fail!!

what should i do?</description>
		<content:encoded><![CDATA[<p>There is a problem:<br />
label function is executing for all the opened inner grids every time.for ex: if you have expanded first row already and then you expand second row .so, label function will excutes for both the grids n number of time.</p>
<p> So if i have a condition on label function for a specific inner grid so it goes fail!!</p>
<p>what should i do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SACHIN</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1212</link>
		<dc:creator>SACHIN</dc:creator>
		<pubDate>Wed, 21 Oct 2009 12:49:44 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1212</guid>
		<description>SACHIN== DevSachin. plz dont confuse :)</description>
		<content:encoded><![CDATA[<p>SACHIN== DevSachin. plz dont confuse <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SACHIN</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1211</link>
		<dc:creator>SACHIN</dc:creator>
		<pubDate>Wed, 21 Oct 2009 12:48:33 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1211</guid>
		<description>I HAVE MAILED AN ANOTHER PROBLEM RELATED WITH SAME COMPONENT. PLEASE HAVE A LOOK ON THIS.

I HAVE SOLVED THE PREVIOUS PROBLEM(ABOVE) THAT I POST IN THE BLOG BUT NOT THE PROBLEM OF &quot;STACK OVERFLOW&quot; FOR WHICH I HAD MAILED YOU. THIS RUNTIME ERROR COMES IN DATAGRIDLISTDATA CLASS.

THX
SACHIN</description>
		<content:encoded><![CDATA[<p>I HAVE MAILED AN ANOTHER PROBLEM RELATED WITH SAME COMPONENT. PLEASE HAVE A LOOK ON THIS.</p>
<p>I HAVE SOLVED THE PREVIOUS PROBLEM(ABOVE) THAT I POST IN THE BLOG BUT NOT THE PROBLEM OF &#8220;STACK OVERFLOW&#8221; FOR WHICH I HAD MAILED YOU. THIS RUNTIME ERROR COMES IN DATAGRIDLISTDATA CLASS.</p>
<p>THX<br />
SACHIN</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DevSachin</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1210</link>
		<dc:creator>DevSachin</dc:creator>
		<pubDate>Tue, 20 Oct 2009 16:20:35 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1210</guid>
		<description>i will try to manage a sample actually it is enterprize application of my company. so i can&#039;t sent a sample.i will try to create  a sample for it.

Thanks
Sachin</description>
		<content:encoded><![CDATA[<p>i will try to manage a sample actually it is enterprize application of my company. so i can&#8217;t sent a sample.i will try to create  a sample for it.</p>
<p>Thanks<br />
Sachin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sameer</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1208</link>
		<dc:creator>Sameer</dc:creator>
		<pubDate>Tue, 13 Oct 2009 05:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1208</guid>
		<description>Can you post a simple sample of what you are doing?</description>
		<content:encoded><![CDATA[<p>Can you post a simple sample of what you are doing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DevSachin</title>
		<link>http://techrays.wordpress.com/2008/04/07/advanced-datagrid-as-an-item-renderer-within-an-advanced-datagrid/#comment-1207</link>
		<dc:creator>DevSachin</dc:creator>
		<pubDate>Mon, 12 Oct 2009 09:59:49 +0000</pubDate>
		<guid isPermaLink="false">http://techrays.wordpress.com/?p=19#comment-1207</guid>
		<description>Actually i am adding 2 blank columns in the grid so the error occures. When i do not add both column.error will not arosed.

plz help me

Sachin Dev Tripathi</description>
		<content:encoded><![CDATA[<p>Actually i am adding 2 blank columns in the grid so the error occures. When i do not add both column.error will not arosed.</p>
<p>plz help me</p>
<p>Sachin Dev Tripathi</p>
]]></content:encoded>
	</item>
</channel>
</rss>
