<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.silverlight.net/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>Silverlight Controls and Silverlight Toolkit</title><link>http://forums.silverlight.net/forums/35.aspx</link><description>Discussions around using and developing Silverlight controls and the Silverlight Toolkit</description><dc:language>en</dc:language><generator>CommunityServer 2007 (Build: 20416.853)</generator><item><title>Re: Re: Re: Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/212670.aspx</link><pubDate>Mon, 27 Apr 2009 23:59:39 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:212670</guid><dc:creator>apple0124</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/212670.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=212670</wfw:commentRss><description>&lt;p&gt;SL 3.0 datagrid. I have created my CellEditingTemplate using a XAML. My GetCellContent(e.Row) gives the GridRow back not the combobox.&lt;/p&gt;
&lt;p&gt;Here is some code &lt;/p&gt;&amp;nbsp; public static DataTemplate returnComboBoxDataTemplate()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; StringBuilder sb = new StringBuilder();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sb.Append(&amp;quot;&amp;lt;DataTemplate &amp;quot; + DEFAULT_NAMESPACE + &amp;quot; &amp;quot; + WINDOWS_NAMESPACE + &amp;quot; &amp;quot; + APP_NAMESPACE + &amp;quot; &amp;quot; + WINFX_NS + &amp;quot; &amp;quot; + WINFX_BASIC + &amp;quot; &amp;quot; + WINDOWS_DATA_NAMESPACE + &amp;quot; &amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sb.Append(&amp;quot;&amp;lt;Grid&amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sb.Append(&amp;quot;&amp;lt;Grid.Resources&amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sb.Append(&amp;quot;&amp;lt;c:StaticPickListProvider x:Key=\&amp;quot;plp\&amp;quot;&amp;gt;&amp;lt;/c:StaticPickListProvider&amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sb.Append(&amp;quot;&amp;lt;/Grid.Resources&amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sb.Append(&amp;quot;&amp;lt;ComboBox x:Name=\&amp;quot;myCbo\&amp;quot; Loaded=\&amp;quot;ComboBox_Loaded\&amp;quot; &amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //sb.Append(&amp;quot;&amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sb.Append(&amp;quot;&amp;lt;/ComboBox&amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sb.Append(&amp;quot;&amp;lt;/Grid&amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sb.Append(&amp;quot;&amp;lt;/DataTemplate&amp;gt;&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return (DataTemplate)XamlReader.Load(sb.ToString());&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } 
&lt;p&gt;When I do &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; void parentGrid_PreparingCellForEdit(object sender, DataGridPreparingCellForEditEventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataGrid dg = (DataGrid)sender;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ComboBox cboItem= (ComboBox)dg.CurrentColumn.GetCellContent(e.Row);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cboItem.ItemsSource = _pickListItems;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cboItem.SelectedIndex = 0;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageBox.Show( e.Column.DisplayIndex.ToString());&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;GetCellContent gives me the Grid.Row.&lt;/p&gt;
&lt;p&gt;How do I get the combobox? &lt;/p&gt;</description></item><item><title>Re: Re: Re: Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/211167.aspx</link><pubDate>Thu, 23 Apr 2009 22:21:46 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:211167</guid><dc:creator>obsidian3d</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/211167.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=211167</wfw:commentRss><description>&lt;p&gt;I don&amp;#39;t see the .GetCellContent method on here anymore...has it been removed?&lt;/p&gt;</description></item><item><title>Re: Re: Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/187414.aspx</link><pubDate>Fri, 13 Mar 2009 05:22:08 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:187414</guid><dc:creator>chinna_g</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/187414.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=187414</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am looking for the same problem .... I am populating the data from dbase to the grid in silverlight2.0.&lt;/p&gt;
&lt;p&gt;Now my requirement is when i select a row i need to get the updated/modified data for the particular row.... (with a hidden field like in asp.net &amp;#39;DataKeyField i.e. if i select one row i need to get the EmpId for that particular row where as the empID will ot be visible to the user).&lt;/p&gt;
&lt;p&gt;Please let me know the solution.....&lt;/p&gt;</description></item><item><title>Re: Re: Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66051.aspx</link><pubDate>Fri, 27 Jun 2008 21:03:15 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66051</guid><dc:creator>Brauliod</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66051.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66051</wfw:commentRss><description>&lt;p&gt;Thanks for the info, for the ListBox now is under control.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;For the textblock (non editing mode) I&amp;#39;m going to hook on the Loaded event for that control and set there the description value (manually search for the description associated with a given ID), maybe is not very elegant.&lt;/p&gt;
&lt;p&gt;&amp;nbsp; Another possiblity could be to add to my entity&amp;nbsp;ID plus description fields (something like Entity: car, color = 1 colorDesc=Red), but I would have to manually update both fields whenever there is a change.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: Re: Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66047.aspx</link><pubDate>Fri, 27 Jun 2008 20:39:46 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66047</guid><dc:creator>lee_sl</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66047.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66047</wfw:commentRss><description>&lt;p&gt;look at DisplayMemberPath set Description to that property and when you get the selectedItem you get the complete object. you can get the id value from that. if you need more customization apply ItemTemplate to the listbox&lt;/p&gt;</description></item><item><title>Re: Re: Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66043.aspx</link><pubDate>Fri, 27 Jun 2008 20:30:51 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66043</guid><dc:creator>Brauliod</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66043.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66043</wfw:commentRss><description>&lt;p&gt;Yes, and this event gives some helpfull params&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;private&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;void&lt;/font&gt;&lt;font size="2"&gt; dgAddTableDlgFieldsGrid_PreparingCellForEdit(&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;object&lt;/font&gt;&lt;font size="2"&gt; sender, &lt;/font&gt;&lt;font color="#2b91af" size="2"&gt;DataGridPreparingCellForEditEventArgs&lt;/font&gt;&lt;font size="2"&gt; e)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;//You can&amp;nbsp;obtain the current row datasource item from the grid&lt;/font&gt;&lt;/p&gt;&lt;font size="2"&gt;&lt;font size="2"&gt;
&lt;p&gt;Entities.&lt;/font&gt;&lt;font color="#2b91af" size="2"&gt;EntityTableFieldEntry&lt;/font&gt;&lt;font size="2"&gt; currField = (Entities.&lt;/font&gt;&lt;font color="#2b91af" size="2"&gt;EntityTableFieldEntry&lt;/font&gt;&lt;font size="2"&gt;) e.Row.DataContext;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;//&amp;nbsp;You can&amp;nbsp;&amp;nbsp;obtain the control associated to that cell&lt;/font&gt;&lt;/p&gt;&lt;font color="#2b91af" size="2"&gt;
&lt;p&gt;ListBox&lt;/font&gt;&lt;font size="2"&gt; lbEdit = e.Column.GetCellContent(e.Row) &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;as&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;font color="#2b91af" size="2"&gt;ListBox&lt;/font&gt;&lt;font size="2"&gt;;&lt;/p&gt;&lt;/font&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Now I have realized, that I have&amp;nbsp;the problem of having ID /&amp;nbsp;Description values... I think I will have to do more manual tweaking to display in the TextBlock the&amp;nbsp;Description but keep the ID internally :-(.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Thanks for your help&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; Braulio&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;</description></item><item><title>Re: Re: Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66034.aspx</link><pubDate>Fri, 27 Jun 2008 19:29:58 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66034</guid><dc:creator>lee_sl</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66034.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66034</wfw:commentRss><description>&lt;p&gt;you are &amp;nbsp;right about the event, PreparingCellForEdit is the right one. if we move the code you wrote before to a handler for this event, it should work&lt;/p&gt;</description></item><item><title>Re: Re: Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66033.aspx</link><pubDate>Fri, 27 Jun 2008 19:11:38 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66033</guid><dc:creator>Brauliod</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66033.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66033</wfw:commentRss><description>&lt;font size="2"&gt;
&lt;p&gt;Hi Lee,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;It seems that the event to hook is:&lt;/p&gt;
&lt;p&gt;PreparingCellForEdit&lt;/p&gt;
&lt;p&gt;&amp;nbsp;This event is fired after the control is loaded.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Thanks a lot for your help,&amp;nbsp;as soon&amp;nbsp;as I get the full solution working I will post it here (then another dummy like me can perform the binding :-)).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/font&gt;</description></item><item><title>Re: Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66032.aspx</link><pubDate>Fri, 27 Jun 2008 19:00:51 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66032</guid><dc:creator>Brauliod</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66032.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66032</wfw:commentRss><description>&lt;p&gt;Thanks... quite near to the solution, but...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;e.Column.GetCellContent(e.Row)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Returns me the control used for display mode, Is there any other event where the grid returns me the control used in edit mode / template?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Thanks&lt;/p&gt;</description></item><item><title>Re: Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66030.aspx</link><pubDate>Fri, 27 Jun 2008 18:46:29 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66030</guid><dc:creator>lee_sl</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66030.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66030</wfw:commentRss><description>&lt;p&gt;you can use GetCellContent() method to get the content of the cell, which you will cast to a listbox in your case&lt;/p&gt;</description></item><item><title>Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66028.aspx</link><pubDate>Fri, 27 Jun 2008 18:43:03 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66028</guid><dc:creator>Brauliod</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66028.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66028</wfw:commentRss><description>&lt;p&gt;Thanks for the tip but... how can I retrieve from this event the instance of the listbox that is being shown?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66026.aspx</link><pubDate>Fri, 27 Jun 2008 18:20:59 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66026</guid><dc:creator>lee_sl</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66026.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66026</wfw:commentRss><description>you&amp;nbsp;should be able to&amp;nbsp;set the ItemsSource in BeginningEdit event handler&lt;font size="1"&gt;&lt;/font&gt;&lt;font size="1"&gt; 
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/font&gt;</description></item><item><title>DataBinding: using a listbox inside a DataGrid</title><link>http://forums.silverlight.net/forums/thread/66024.aspx</link><pubDate>Fri, 27 Jun 2008 18:07:49 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:66024</guid><dc:creator>Brauliod</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/66024.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=35&amp;PostID=66024</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp; I&amp;#39;m using a DataGrid to display some binded data. In order to let the user edit online the rows of the data grid I have created several CellEditingTemplates, If I use for instance a textbox for editing a column, works fine...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; BUT... what happens if I want to use a listbox in that data template? How can I indicate the ItemsSource of that ListBox ? (the data binded only contains the main entity) Should I create my own entity that contains all the data necessary? (something like a crappy dataset?).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; Thanks in advance&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Braulio&lt;/p&gt;</description></item></channel></rss>