<?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: Update: Displaying background activity in a Silverlight RIA application</title>
	<atom:link href="http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/</link>
	<description>Silverlight, RIA development, and other goofy geeky goodness.</description>
	<lastBuildDate>Thu, 11 Mar 2010 09:06:48 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: david.poll</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-5524</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Tue, 05 Jan 2010 21:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-5524</guid>
		<description>I&#039;m not sure I understand what you&#039;re trying to accomplish with your code.  Can you perhaps provide some additional detail?</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure I understand what you&#8217;re trying to accomplish with your code.  Can you perhaps provide some additional detail?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dev</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-5523</link>
		<dc:creator>dev</dc:creator>
		<pubDate>Tue, 05 Jan 2010 20:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-5523</guid>
		<description>I have a question about SL3 PagedCollectionView and wonder if you could help. I have the following code and the data enter on 1 page and copied over to another page on the same row number. Is this a bug? is there a workaround?


PagedCollectionView pagedCollectionView = new PagedCollectionView(e.Result);
                dataGridBike.ItemsSource = pagedCollectionView;
                dataForm1.ItemsSource = pagedCollectionView;  

                // populate employee info
                ObservableCollection bikes = new ObservableCollection();
                //PagedCollectionView bikeView = pagedCollectionView;
                bikes = (ObservableCollection)pagedCollectionView.SourceCollection;</description>
		<content:encoded><![CDATA[<p>I have a question about SL3 PagedCollectionView and wonder if you could help. I have the following code and the data enter on 1 page and copied over to another page on the same row number. Is this a bug? is there a workaround?</p>
<p>PagedCollectionView pagedCollectionView = new PagedCollectionView(e.Result);<br />
                dataGridBike.ItemsSource = pagedCollectionView;<br />
                dataForm1.ItemsSource = pagedCollectionView;  </p>
<p>                // populate employee info<br />
                ObservableCollection bikes = new ObservableCollection();<br />
                //PagedCollectionView bikeView = pagedCollectionView;<br />
                bikes = (ObservableCollection)pagedCollectionView.SourceCollection;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-3962</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Thu, 03 Sep 2009 21:16:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-3962</guid>
		<description>Hi David,

Did you ever find a fix for this issue? I&#039;m running into it too where I have a data form wrapped in an activity control and when the DataContext that the activity control is bound to comes out of the IsLoading state all of the items on the data form are disabled (until you click on one).</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>Did you ever find a fix for this issue? I&#8217;m running into it too where I have a data form wrapped in an activity control and when the DataContext that the activity control is bound to comes out of the IsLoading state all of the items on the data form are disabled (until you click on one).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PYA</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-3771</link>
		<dc:creator>PYA</dc:creator>
		<pubDate>Wed, 19 Aug 2009 16:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-3771</guid>
		<description>Hi,

First of all, thx for this nice control, it&#039;s way cleaner than using a ProgressBar. I&#039;ve got only one problem, the same as Tom: when I set IsActive to false, my DataForm&#039;s children appear disabled.

Everything re-enables when I click on a DataField. I tried to hack the problem by calling Focus() on the DataForm or on a DataField after setting IsActive to false, but it&#039;s no use.

I thought it was because the Activity control restored the previous state, so I also tried to put a single item in the collection to which my DataForm is bound before setting IsActive to true and loading my data, in order to get an enabled DataForm as a previous sate, but in the end it didn&#039;t help, so I guess the problem is a bit more subtle.

Have you found anything, do you have an idea where the problem could be?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>First of all, thx for this nice control, it&#8217;s way cleaner than using a ProgressBar. I&#8217;ve got only one problem, the same as Tom: when I set IsActive to false, my DataForm&#8217;s children appear disabled.</p>
<p>Everything re-enables when I click on a DataField. I tried to hack the problem by calling Focus() on the DataForm or on a DataField after setting IsActive to false, but it&#8217;s no use.</p>
<p>I thought it was because the Activity control restored the previous state, so I also tried to put a single item in the collection to which my DataForm is bound before setting IsActive to true and loading my data, in order to get an enabled DataForm as a previous sate, but in the end it didn&#8217;t help, so I guess the problem is a bit more subtle.</p>
<p>Have you found anything, do you have an idea where the problem could be?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david.poll</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-3165</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Fri, 31 Jul 2009 22:33:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-3165</guid>
		<description>As you mentioned -- the solution is below :)</description>
		<content:encoded><![CDATA[<p>As you mentioned &#8212; the solution is below <img src='http://www.davidpoll.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david.poll</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-3164</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Fri, 31 Jul 2009 22:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-3164</guid>
		<description>Yep -- I&#039;ll be posting about this soon.  The business template has an old version of the Activity control in it -- if you use the most recent one from my site, this problem is fixed.  We&#039;ll make sure the Business Application Template gets updated for future releases :)</description>
		<content:encoded><![CDATA[<p>Yep &#8212; I&#8217;ll be posting about this soon.  The business template has an old version of the Activity control in it &#8212; if you use the most recent one from my site, this problem is fixed.  We&#8217;ll make sure the Business Application Template gets updated for future releases <img src='http://www.davidpoll.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Strahan</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-3163</link>
		<dc:creator>Charles Strahan</dc:creator>
		<pubDate>Fri, 31 Jul 2009 22:30:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-3163</guid>
		<description>Excellent!  That did the trick.

Thanks,
-Charles</description>
		<content:encoded><![CDATA[<p>Excellent!  That did the trick.</p>
<p>Thanks,<br />
-Charles</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Strahan</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-3162</link>
		<dc:creator>Charles Strahan</dc:creator>
		<pubDate>Fri, 31 Jul 2009 22:19:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-3162</guid>
		<description>Hi Marcus,

I just posted an identical comment below.  I have the same layout as you describe, a Grid with the Activity inside of it, with a DataGrid below that.  The DataGrid collapses and shows only the header.

Any luck getting it to expand?

-Charles</description>
		<content:encoded><![CDATA[<p>Hi Marcus,</p>
<p>I just posted an identical comment below.  I have the same layout as you describe, a Grid with the Activity inside of it, with a DataGrid below that.  The DataGrid collapses and shows only the header.</p>
<p>Any luck getting it to expand?</p>
<p>-Charles</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Strahan</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-3161</link>
		<dc:creator>Charles Strahan</dc:creator>
		<pubDate>Fri, 31 Jul 2009 22:15:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-3161</guid>
		<description>Hi Dadid,

This is an excellent control.  I have a quick question though regarding the layout of the control&#039;s content.

I currently have a page with a DataGrid inside of a Grid.  The RowDefinition&#039;s height is set to &quot;*&quot;, causing the grid to expand and fill the page.  If I place the Activity control around the DataGrid, the DataGrid collapses, causing it to be centered on the page.

Do you know if there&#039;s a way I can use Activity and still have it fill the Grid?

Cheers,
-Charles</description>
		<content:encoded><![CDATA[<p>Hi Dadid,</p>
<p>This is an excellent control.  I have a quick question though regarding the layout of the control&#8217;s content.</p>
<p>I currently have a page with a DataGrid inside of a Grid.  The RowDefinition&#8217;s height is set to &#8220;*&#8221;, causing the grid to expand and fill the page.  If I place the Activity control around the DataGrid, the DataGrid collapses, causing it to be centered on the page.</p>
<p>Do you know if there&#8217;s a way I can use Activity and still have it fill the Grid?</p>
<p>Cheers,<br />
-Charles</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: montu82</title>
		<link>http://www.davidpoll.com/2009/06/11/update-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-2867</link>
		<dc:creator>montu82</dc:creator>
		<pubDate>Wed, 22 Jul 2009 20:42:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/?p=73#comment-2867</guid>
		<description>I downloaded and built the project from the activity source code above and replaced the dll file in the Libs folder and my datagrid is still not showing the correct width? Any suggestions? I also used the silverlight business template.</description>
		<content:encoded><![CDATA[<p>I downloaded and built the project from the activity source code above and replaced the dll file in the Libs folder and my datagrid is still not showing the correct width? Any suggestions? I also used the silverlight business template.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
