<?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 for iDev stream</title>
	<atom:link href="http://www.idevstream.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.idevstream.com</link>
	<description>Technology Blog</description>
	<lastBuildDate>Fri, 25 May 2012 09:57:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
	<item>
		<title>Comment on CRM Asynchronous Service Not Running by Integration</title>
		<link>http://www.idevstream.com/?p=195&#038;cpage=1#comment-10164</link>
		<dc:creator>Integration</dc:creator>
		<pubDate>Fri, 25 May 2012 09:57:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=195#comment-10164</guid>
		<description>THANK YOU!

SAVED MY LIFE :)</description>
		<content:encoded><![CDATA[<p>THANK YOU!</p>
<p>SAVED MY LIFE <img src='http://www.idevstream.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Telerik Editable GridView with MVVM – Part 3 by admin</title>
		<link>http://www.idevstream.com/?p=136&#038;cpage=1#comment-9860</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 05 May 2012 03:59:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=136#comment-9860</guid>
		<description>I agree... If I was to rework this today I would definetly take an approach of having a collection of Row View Models. One of these days I will post an updated version.</description>
		<content:encoded><![CDATA[<p>I agree&#8230; If I was to rework this today I would definetly take an approach of having a collection of Row View Models. One of these days I will post an updated version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Telerik Editable GridView with MVVM – Part 3 by isheeple</title>
		<link>http://www.idevstream.com/?p=136&#038;cpage=1#comment-9282</link>
		<dc:creator>isheeple</dc:creator>
		<pubDate>Mon, 02 Apr 2012 16:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=136#comment-9282</guid>
		<description>This is still binding directly to the model and letting the view edit the model with the VM doing nothing but offering a passthrough collection. In the case of an inline editable grid it should still follow the same pattern as if you had an edit form, the edit form would bind to a VM of a single entity and any editing would be done through the VM, not directly to the entity. Mirror this to an in-line edit grid, your mainVM has a collection of rowVM&#039;s.

Each row is a View but its virtualized by the fact that its in this &quot;gridview&quot; and its easy to overlook.

I went down this road before and it ended with an MVVM mess. Once you use a RowViewModel for each item it becomes clean and respects the pattern and the concept more cleanly.</description>
		<content:encoded><![CDATA[<p>This is still binding directly to the model and letting the view edit the model with the VM doing nothing but offering a passthrough collection. In the case of an inline editable grid it should still follow the same pattern as if you had an edit form, the edit form would bind to a VM of a single entity and any editing would be done through the VM, not directly to the entity. Mirror this to an in-line edit grid, your mainVM has a collection of rowVM&#8217;s.</p>
<p>Each row is a View but its virtualized by the fact that its in this &#8220;gridview&#8221; and its easy to overlook.</p>
<p>I went down this road before and it ended with an MVVM mess. Once you use a RowViewModel for each item it becomes clean and respects the pattern and the concept more cleanly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Telerik Editable GridView with MVVM – Part 3 by matt</title>
		<link>http://www.idevstream.com/?p=136&#038;cpage=1#comment-5044</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Wed, 30 Nov 2011 03:20:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=136#comment-5044</guid>
		<description>great article. really informative and helped me with a paper!</description>
		<content:encoded><![CDATA[<p>great article. really informative and helped me with a paper!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Telerik Editable GridView with MVVM – Part 3 by Ubuntu</title>
		<link>http://www.idevstream.com/?p=136&#038;cpage=1#comment-1897</link>
		<dc:creator>Ubuntu</dc:creator>
		<pubDate>Wed, 25 May 2011 11:40:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=136#comment-1897</guid>
		<description>Hello,
I don&#039;t find this 100% MVVM implementatio.If you can bind the gridview_editrowend to your VM will be perfect.

Regards</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I don&#8217;t find this 100% MVVM implementatio.If you can bind the gridview_editrowend to your VM will be perfect.</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Telerik Editable GridView with MVVM – Part 3 by admin</title>
		<link>http://www.idevstream.com/?p=136&#038;cpage=1#comment-801</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 06 Jan 2011 21:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=136#comment-801</guid>
		<description>You would have to define your View Model in XAML as a Resource:

&lt;strong&gt;&lt;UserControl.Resources&gt;
        &lt;Models:MyViewModel x:Key=&quot;MyViewModel&quot;&gt;&lt;/Models:MyViewModel &gt; 
&lt;/UserControl.Resources&gt;&lt;/strong&gt;

Then bind your grid column header by specifying your View Model as a source.

&lt;strong&gt;Header=&quot;{Binding ColumnHeaderCol1, Source={StaticResource MyViewModel}}&quot;&lt;/strong&gt;

</description>
		<content:encoded><![CDATA[<p>You would have to define your View Model in XAML as a Resource:</p>
<p><strong>&lt;UserControl.Resources&gt;<br />
        &lt;Models:MyViewModel x:Key=&#8221;MyViewModel&#8221;&gt;&lt;/Models:MyViewModel &gt;<br />
&lt;/UserControl.Resources&gt;</strong></p>
<p>Then bind your grid column header by specifying your View Model as a source.</p>
<p><strong>Header=&#8221;{Binding ColumnHeaderCol1, Source={StaticResource MyViewModel}}&#8221;</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Telerik Editable GridView with MVVM &#8211; Part 2 by admin</title>
		<link>http://www.idevstream.com/?p=115&#038;cpage=1#comment-800</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 06 Jan 2011 21:16:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=115#comment-800</guid>
		<description>I don&#039;t show an example of my gateway class.  It is a class I have defined under my App_Code folder which makes a call to the server (via WCF) to get my list of employees.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t show an example of my gateway class.  It is a class I have defined under my App_Code folder which makes a call to the server (via WCF) to get my list of employees.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Telerik Editable GridView with MVVM &#8211; Part 2 by Cesar Valencia Lopez</title>
		<link>http://www.idevstream.com/?p=115&#038;cpage=1#comment-774</link>
		<dc:creator>Cesar Valencia Lopez</dc:creator>
		<pubDate>Tue, 04 Jan 2011 17:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=115#comment-774</guid>
		<description>Hi,

¿Where is the class EmployeeGateway defined? I tried to reproduce your example, but I didn´t find the EmployeeGateway class. Please, could you tell me where it is?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>¿Where is the class EmployeeGateway defined? I tried to reproduce your example, but I didn´t find the EmployeeGateway class. Please, could you tell me where it is?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Telerik Editable GridView with MVVM – Part 3 by Scott Peal</title>
		<link>http://www.idevstream.com/?p=136&#038;cpage=1#comment-582</link>
		<dc:creator>Scott Peal</dc:creator>
		<pubDate>Tue, 07 Dec 2010 19:07:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=136#comment-582</guid>
		<description>How do you bind a column header to the modelview in your example above? I use this code on my modelview:

       public string ColumnHeaderCol1
        {
            get
            {
                return GLOBALS.Labels.Col1;
            }
        }

It seems because the grid&#039;s itemsource is bound to the collection, that the header is trying to bind to a column in the collection as well. We need it to bind to the ModelView at the same level as the collection.

Thanks in advanced</description>
		<content:encoded><![CDATA[<p>How do you bind a column header to the modelview in your example above? I use this code on my modelview:</p>
<p>       public string ColumnHeaderCol1<br />
        {<br />
            get<br />
            {<br />
                return GLOBALS.Labels.Col1;<br />
            }<br />
        }</p>
<p>It seems because the grid&#8217;s itemsource is bound to the collection, that the header is trying to bind to a column in the collection as well. We need it to bind to the ModelView at the same level as the collection.</p>
<p>Thanks in advanced</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CRM FetchXML by Things I found interesting on the Internet&#58; Saturday, July 17, 2010 - Mitch Milam&#39;s Microsoft Discussions</title>
		<link>http://www.idevstream.com/?p=3&#038;cpage=1#comment-46</link>
		<dc:creator>Things I found interesting on the Internet&#58; Saturday, July 17, 2010 - Mitch Milam&#39;s Microsoft Discussions</dc:creator>
		<pubDate>Sat, 17 Jul 2010 17:16:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.idevstream.com/?p=3#comment-46</guid>
		<description>[...] CRM FetchXML &#124; iDev stream [...]</description>
		<content:encoded><![CDATA[<p>[...] CRM FetchXML | iDev stream [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
