<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx</link><description>Finally, the v1 WPF DataGrid is out! This is an out-of-band release that will be hosted on the WPF CodePlex site and integrated into the WPF Framework in vNext. You can download the bits as well as the source code here . You also may be pleased to hear</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>.NET 3.5 SP1 and WPF DataGrid CTP are out now!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9022192</link><pubDate>Wed, 29 Oct 2008 16:07:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9022192</guid><dc:creator>Vincent Sibal's Blog</dc:creator><description>&lt;p&gt;UPDATE: the WPF DataGrid v1 has just released. For more information, see this post . The information&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9027656</link><pubDate>Sat, 01 Nov 2008 05:29:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9027656</guid><dc:creator>Bong</dc:creator><description>&lt;p&gt;Hi Vincent,&lt;/p&gt;
&lt;p&gt;Just replace the CTP Toolkit to v1 in my project and stumbled upon some problems. The CommittingEdit and CancelingEdit events seems to be gone. Were they removed? Or replaced by some other event?&lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9028157</link><pubDate>Sat, 01 Nov 2008 17:02:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9028157</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;Bong,&lt;/p&gt;
&lt;p&gt;Those events have been replaced with CellEditEnding and RowEndEnding. &amp;nbsp;The args in the event handler will tell you if it is a commit or cancel action.&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9028912</link><pubDate>Sun, 02 Nov 2008 09:39:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9028912</guid><dc:creator>Ruler</dc:creator><description>&lt;p&gt;Hi Vincent,&lt;/p&gt;
&lt;p&gt;I have a combobox in the datagrid for each row. Depending on the selection of the combobox, i would like to bind the row with different control.&lt;/p&gt;
&lt;p&gt;Do you know how i can do that ?&lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9029299</link><pubDate>Sun, 02 Nov 2008 18:41:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9029299</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;Ruler,&lt;/p&gt;
&lt;p&gt;Could you explain a little more on how you want to bind a row to a different control. &amp;nbsp;Are you not using an ItemsSource then? &amp;nbsp;Generally rows are bound to data and not other controls.&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9029898</link><pubDate>Mon, 03 Nov 2008 03:07:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9029898</guid><dc:creator>Ruler</dc:creator><description>&lt;P&gt;Actually, it's simple.&lt;/P&gt;
&lt;P&gt;ON each column, i have a combobox and i would like to bind a textbox with different data in it.&lt;/P&gt;
&lt;P&gt;Example,&lt;/P&gt;
&lt;P&gt;On each row, i have a combobox with selection of different GPS positions. Then on the next column,&lt;/P&gt;
&lt;P&gt;I would like to bind the textbox with the options selected.&lt;/P&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9030435</link><pubDate>Mon, 03 Nov 2008 05:09:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9030435</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;Ruler,&lt;/p&gt;
&lt;p&gt;Binding a row to a different control is not really what you are asking then. &amp;nbsp;A row is bound to the data source item. &amp;nbsp;Each cell is then bound to a property on the data item. &amp;nbsp;For your scenario, you can binding a property for the comboboxcolumn and the textcolumn to the same property as the comboboxcolumn will end up changing the property on the data source item and the textcolumn is just consuming the same property. &amp;nbsp;&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid row validation</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9032235</link><pubDate>Mon, 03 Nov 2008 12:27:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9032235</guid><dc:creator>Sreeraj</dc:creator><description>&lt;p&gt;Hi Vincent,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;I'm looking for the row validation in datagrid v1. I went through your application and i saw that the row validation is binded with the ValidationHelper like this&lt;/p&gt;
&lt;p&gt;&amp;lt;dg:DataGrid.RowValidationRules&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;local:CustomerValidationRule ValidationStep=&amp;quot;UpdatedValue&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/dg:DataGrid.RowValidationRules&amp;gt;&lt;/p&gt;
&lt;p&gt;. In the ValidationHelper I saw 4 classes inherited from ValidationRule and they contains overrided validate method in which validations is checked. &lt;/p&gt;
&lt;p&gt;What i didn't understand is that how these validations are binded with corresponding cells in the row. And also I would like to know how the row tooltip is assigned with the error message.&lt;/p&gt;
&lt;p&gt;Thanking you with anticipation,&lt;/p&gt;
&lt;p&gt;Sreeraj&lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9033114</link><pubDate>Mon, 03 Nov 2008 16:40:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9033114</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;Sreeraj,&lt;/p&gt;
&lt;p&gt;I wrote two posts on BindingGroups that may be able to help. &amp;nbsp;Here is the intro post, &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/vinsibal/archive/2008/08/11/wpf-3-5-sp1-feature-bindinggroups-with-item-level-validation.aspx"&gt;http://blogs.msdn.com/vinsibal/archive/2008/08/11/wpf-3-5-sp1-feature-bindinggroups-with-item-level-validation.aspx&lt;/a&gt;, and here is a post about the validation feedback, &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/vinsibal/archive/2008/09/08/wpf-bindinggroup-and-validation-feedback.aspx"&gt;http://blogs.msdn.com/vinsibal/archive/2008/09/08/wpf-bindinggroup-and-validation-feedback.aspx&lt;/a&gt;. &amp;nbsp;If you have more questions after that just let me know.&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9038542</link><pubDate>Tue, 04 Nov 2008 13:09:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9038542</guid><dc:creator>blindmeis</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I bind the grid to a DataTable. when there more then 20000 rows, grouping becomes veryyyy slow. &lt;/p&gt;
&lt;p&gt;any ideas how to make it faster?&lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9039281</link><pubDate>Tue, 04 Nov 2008 16:21:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9039281</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;blindmeis,&lt;/p&gt;
&lt;p&gt;Grouping does not have virtualization built in and therefore is really slow. &amp;nbsp;You can add virtualization yourself. &amp;nbsp;Here is a post that points to that, &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/vinsibal/archive/2008/06/12/grouping-and-virtualization.aspx"&gt;http://blogs.msdn.com/vinsibal/archive/2008/06/12/grouping-and-virtualization.aspx&lt;/a&gt;.&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9039748</link><pubDate>Tue, 04 Nov 2008 18:14:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9039748</guid><dc:creator>blindmeis</dc:creator><description>&lt;p&gt;Hi Vin,&lt;/p&gt;
&lt;p&gt;got he example running, but if i try this in my testapp.&lt;/p&gt;
&lt;p&gt;private ReadOnlyObservableCollection&amp;lt;object&amp;gt; BaseGroups&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;get&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return base.Groups;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt;is always null!&lt;/p&gt;
&lt;p&gt;if i look into the debug i can see its 40 after setting the groupdescription! i dont know why and when its set to null... &lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9049459</link><pubDate>Thu, 06 Nov 2008 18:29:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9049459</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;blindmeis,&lt;/p&gt;
&lt;p&gt;It's a little tough to tell the issue from just that. &amp;nbsp;Please email me a zipped repro. &amp;nbsp;&lt;/p&gt;
</description></item><item><title>WPF DataGrid Design-time Walkthrough</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9052418</link><pubDate>Fri, 07 Nov 2008 18:53:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9052418</guid><dc:creator>Vincent Sibal's Blog</dc:creator><description>&lt;p&gt;The DataGrid walkthrough on windowsclient.net/wpf and the Tips &amp;amp;amp; Tricks section on codeplex talk&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9178809</link><pubDate>Fri, 05 Dec 2008 09:40:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9178809</guid><dc:creator>sekhar</dc:creator><description>&lt;p&gt;Hi Vincent,&lt;/p&gt;
&lt;p&gt;We have a scenario in one of our applications. we have two dropdownlists in a row in the WPF datagrid. The requirement is that the 2nd dropdownlist should be populated depending on the value that is been selected in the 1st dropdownlist(PK FK relationship exists in the db).Can you please suggest the best way to go forward&lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9212987</link><pubDate>Sun, 14 Dec 2008 15:02:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9212987</guid><dc:creator>mb</dc:creator><description>&lt;p&gt;Does anyone have idea, how to get string from datagrid and put it into textbox? The command &amp;nbsp;DataGrid.Cells[x].Rows[y] doesn't work and i couldn't find any other fitting command. It's surelly some obvios solution, but after few hours searching, I haven't found anything.&lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9225849</link><pubDate>Tue, 16 Dec 2008 16:43:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9225849</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;mb,&lt;/p&gt;
&lt;p&gt;You can go through your data source directly. &amp;nbsp;If you want to go through the DataGrid you can get the item by doing DataGrid.Items[x]. &amp;nbsp;With the Item you have access to all the properties so you can just access it directly from there. &amp;nbsp;If you really want to use an index on the cell you can do something like this utility code on this thread, &lt;a rel="nofollow" target="_new" href="http://www.codeplex.com/wpf/Thread/View.aspx?ThreadId=34065"&gt;http://www.codeplex.com/wpf/Thread/View.aspx?ThreadId=34065&lt;/a&gt;, and call the GetCell() method.&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9231182</link><pubDate>Wed, 17 Dec 2008 20:22:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9231182</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;sekhar,&lt;/p&gt;
&lt;p&gt;I just wrote a new post that might help you out, &lt;a rel="nofollow" target="_new" href="http://msdn.technetweb3.orcsweb.com/vinsibal/archive/2008/12/17/wpf-datagrid-dynamically-updating-datagridcomboboxcolumn.aspx"&gt;http://msdn.technetweb3.orcsweb.com/vinsibal/archive/2008/12/17/wpf-datagrid-dynamically-updating-datagridcomboboxcolumn.aspx&lt;/a&gt;.&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9522936</link><pubDate>Tue, 31 Mar 2009 18:14:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9522936</guid><dc:creator>Bhuvan</dc:creator><description>&lt;p&gt;I was trying to put a button and an indented text box for displaying self-referential hierarchical data in the data grid.&lt;/p&gt;
&lt;p&gt;Trying to do as&lt;/p&gt;
&lt;p&gt;&amp;lt;dg:DataGridTemplateColumn Header=&amp;quot;Id&amp;quot; &amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;dg:DataGridTemplateColumn.CellTemplate&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;DataTemplate&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;WrapPanel&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Button&amp;gt;+&amp;lt;/Button&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;ContentPresenter Content=&amp;quot;{Binding Indent, Mode=OneTime}&amp;quot; Margin=&amp;quot;2,0&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;TextBlock Text=&amp;quot;{Binding Path=conceptId}&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/WrapPanel&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/DataTemplate&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/dg:DataGridTemplateColumn.CellTemplate&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/dg:DataGridTemplateColumn&amp;gt;&lt;/p&gt;
&lt;p&gt;I can see button but not any bound Items. If i bind these columns with regular TextColumn they show up fine.&lt;/p&gt;
&lt;p&gt;Any help will be appreciated.&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9524552</link><pubDate>Wed, 01 Apr 2009 03:02:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9524552</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;Bhuvan,&lt;/p&gt;
&lt;p&gt;So if you do something like this:&lt;/p&gt;
&lt;p&gt;&amp;lt;dg:DataGridTextColumn Binding=&amp;quot;{Binding conceptId}&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;it works? &amp;nbsp;Do you get any binding errors with your TemplateColumn above?&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9627610</link><pubDate>Tue, 19 May 2009 14:10:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9627610</guid><dc:creator>Wayne</dc:creator><description>&lt;p&gt;I have a DataGridComboBoxColumn bound to a foreign key to another table. The combobox values are then populated from another datasource thus:&lt;/p&gt;
&lt;p&gt;&amp;lt;my:DataGridComboBoxColumn Header=&amp;quot;Vetted Pos 1&amp;quot; ItemsSource=&amp;quot;{Binding Source={StaticResource vetted}}&amp;quot; DisplayMemberPath=&amp;quot;DESCRIPTION&amp;quot; SelectedValuePath=&amp;quot;CODE&amp;quot; SelectedValueBinding=&amp;quot;{Binding VettedPos1, Mode=TwoWay}&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;When I change the value in the dropdown, the selected index (dg.SelectedIndex) in the code behind is -1.&lt;/p&gt;
&lt;p&gt;Any help much appreciated!!&lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9632919</link><pubDate>Thu, 21 May 2009 00:37:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9632919</guid><dc:creator>charley sheng</dc:creator><description>&lt;p&gt;vinsibal,&lt;/p&gt;
&lt;p&gt;I have used the datagrid to create the template by using the template column and put customized control into the column. drap visula control into single cell of data grid worked fine, but didn't work for multiple selected cells. any suggestion?&lt;/p&gt;
&lt;p&gt;thanks,&lt;/p&gt;
&lt;p&gt;charley sheng&lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9633693</link><pubDate>Thu, 21 May 2009 15:31:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9633693</guid><dc:creator>vinsibal</dc:creator><description>&lt;p&gt;Charley,&lt;/p&gt;
&lt;p&gt;&amp;quot;drap visula control into a single cell&amp;quot; =&amp;gt; &amp;quot;drag visual control into a single cell&amp;quot;? &amp;nbsp;Could you expand on this a little bit. &amp;nbsp;I'm not quite sure what you mean.&lt;/p&gt;
</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9633819</link><pubDate>Thu, 21 May 2009 17:35:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9633819</guid><dc:creator>Charley sheng</dc:creator><description>&lt;p&gt;Vinsibal,&lt;/p&gt;
&lt;p&gt;thank you for yor reply. the DataGrid is used as drop target object and drag some other control, like, button,content tempaltes,... into the datagrid cell or cells. if single cell is slected, the draging is working as expected, but if multiple cells are selected and drag control into the cells, nothing happened. the drag data objects could be seen in the debug but there is not any UI presentation could be seen on the screen. &lt;/p&gt;
&lt;p&gt;Best,&lt;/p&gt;
&lt;p&gt;charley sheng &lt;/p&gt;</description></item><item><title>re: WPF DataGrid and the WPFToolKit have released!</title><link>http://blogs.msdn.com/vinsibal/archive/2008/10/22/wpf-datagrid-and-the-wpftoolkit-have-released.aspx#9654328</link><pubDate>Fri, 29 May 2009 19:35:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9654328</guid><dc:creator>Charley sheng</dc:creator><description>&lt;p&gt;Vinsibal,&lt;/p&gt;
&lt;p&gt;I have figured out what the cause is and the problem is fixed.&lt;/p&gt;
&lt;p&gt;Best,&lt;/p&gt;
&lt;p&gt;charley sheng &lt;/p&gt;</description></item></channel></rss>