SilverlightShow: Creating Rich Data Forms in Silverlight 3 - Customization Comments http://www.silverlightshow.net/ Silverlight articles, Silverlight tutorials, Silverlight videos, Silverlight samples en-us SilverlightShow.net estoychev@completit.com (Emil Stoychev) Argotic Syndication Framework, http://www.codeplex.com/Argotic http://www.rssboard.org/rss-specification RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment2658 Thanks for this - very useful. <p> Would you have an idea how I could customise the <em>DisplayTemplate </em>so that it will always show the "Description" hover button? I want to show data in a read-only form, but also want to allow the user to hover over the "i" button to see the description, however the default control seems to only show this in Edit mode.</p> <p>Regards</p> <p>   Scott</p> ( Scott) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Wed, 11 Nov 2009 15:51:43 +0300 RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment2611 Nice article. Can you re-post the code file. I cannot open on my pc (invalid file). I want to see source code for load event. ( steve) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Fri, 30 Oct 2009 18:54:25 +0300 RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment2053 Thanks, nice to have examples updated for RTW ( Roger) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Mon, 20 Jul 2009 23:02:11 +0300 RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment1999 @bill: Pls check if you are accessing DataForm from the namespace '<span style="font-size: 13px">System.Windows.Controls.Data.DataForm.Toolkit</span>'.  If you don't get a reference, download the latest Silverlight 3.0 toolkit from Codeplex.com and check again. Hope it helps! ( Satish) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Fri, 17 Jul 2009 11:51:36 +0300 RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment1997 @<span id="ctl00_cphMiddle_ContentPlaceHolderContent_itemComments_dlstComments_ctl08_lblCommentAuthor">bill burrows: It's because the article was written when Silverlight 3 beta was released. Now, when Silverlight 3 is out, there is change to DataForm control. You can have a look at this article, which describes changes in the final release - <a shape="rect" href="http://www.silverlightshow.net/items/Silverlight-3-RTW-overview.aspx" shape="rect">http://www.silverlightshow.net/items/Silverlight-3-RTW-overview.aspx</a></span> ( boyanmihailov) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Fri, 17 Jul 2009 10:52:10 +0300 RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment1986 <p>When I try to adda <df:DataForm.Fields> within my DataForm definition, I get an error saying that "The attachable property "Fields" was not found in type 'DataForm'."</p> <p>Any idea why this might be the case?</p> ( bill burrows) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Thu, 16 Jul 2009 21:37:52 +0300 RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment1673 Excellent, this is really what I wanted! ( Fan) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Thu, 18 Jun 2009 21:10:25 +0300 RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment1643 @<span id="ctl00_cphMiddle_ContentPlaceHolderContent_itemComments_dlstComments_ctl02_lblCommentAuthor">jsloan: Thank you for reporting that! It seems that ComboBox does not understand what I want to do. That's why I decided to use another approach. I bound the ComboBox directly to a collection of strings which represents the Genres enumeration. Now, it seems to work. The source code is updated with the new changes.</span> ( boyanmihailov) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Thu, 04 Jun 2009 08:01:49 +0300 RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment1639 <p>Just tested and the following line in your customized template doesn't appear to work</p> <p><span style="color: #0000ff"><</span><span style="font-size: 11px">ComboBox x:</span><span style="color: #ff0000">Name</span><span style="font-size: 11px">=</span><span style="color: #0000ff">"cboGenres"</span><span style="font-size: 11px"> </span><span style="color: #ff0000">Grid.Row</span><span style="font-size: 11px">=</span><span style="color: #0000ff">"4"</span><span style="font-size: 11px"> </span><span style="color: #ff0000">ItemsSource</span><span style="font-size: 11px">=</span><span style="color: #0000ff">"{Binding Genre, Converter={StaticResource enumGetValuesConverter}}"</span><span style="font-size: 11px"> </span><span style="color: #ff0000">SelectedItem</span><span style="font-size: 11px">=</span><span style="color: #0000ff">"{Binding Genre, Mode=TwoWay, Converter={StaticResource enumSelectedValueConverter}}"</span><span style="font-size: 11px"> </span><span style="color: #0000ff">/></span><span style="font-size: 11px"> </span></p> ( jsloan) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Wed, 03 Jun 2009 20:11:20 +0300 RE: Creating Rich Data Forms in Silverlight 3 - Customization http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx#comment1579 It's Good ! <p> </p> ( Majid Mehrtash) http://www.silverlightshow.net/items/Creating-Rich-Data-Forms-in-Silverlight-3-Customization.aspx Tue, 19 May 2009 02:29:18 +0300