﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - listviewmodel</title><link>http://www.intersoftsolutions.com/Community/Tags/listviewmodel/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>How to Update Bound Item Text in a ListViewModel</title><link>http://www.intersoftsolutions.com/Community/Tags/listviewmodel/</link><pubDate>Wed, 27 Apr 2016 16:46:53 GMT</pubDate><dc:creator>calebpourchot</dc:creator><category>listviewmodel</category><description>&lt;p&gt;If I have a ListViewModel and the items are bound to a simple model like:&lt;/p&gt;&lt;pre&gt;public class TestViewModel : ViewModelBase
{
public string Description
{
   get { return _description; }
   set
   {
      if (_description != value)
      {
         _description = value;
        OnPropertyChanged("Description");
      }
   }
}
}&lt;span style="font-family: 'Lucida Sans Unicode'; font-size: 10pt;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;font face="Lucida Sans Unicode"&gt;&lt;span style="font-size: 13.3333px;"&gt;The list's item binding DisplayMemberPath is bound to Description.&lt;/span&gt;&lt;/font&gt;&lt;/pre&gt;&lt;pre&gt;&lt;font face="Lucida Sans Unicode"&gt;&lt;span style="font-size: 13.3333px;"&gt;The first time the list is loaded, everything is bound and displayed correctly. However, if I programatically change Description in the model, the text in the list does not update.&lt;/span&gt;&lt;/font&gt;&lt;/pre&gt;&lt;pre&gt;&lt;font face="Lucida Sans Unicode"&gt;&lt;span style="font-size: 13.3333px;"&gt;How do I get that to work?&lt;/span&gt;&lt;/font&gt;&lt;/pre&gt;</description></item><item><title>Problem with UITableViewController in the center of a Drawer</title><link>http://www.intersoftsolutions.com/Community/Tags/listviewmodel/</link><pubDate>Fri, 08 May 2015 15:03:53 GMT</pubDate><dc:creator>cristobal@sbsoftware.es</dc:creator><category>iOS</category><category>UITableViewController</category><category>listviewmodel</category><category>drawer</category><category>Crosslight mobile</category><description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;I've a problem with a UITableViewController. It is in the center of a Drawer. The Items of ListViewModel are 26 element. In Android, I have used a ListFragment without problems, but my UITableViewController in iOs is empty.&lt;/p&gt;&lt;p&gt;The cells of UITableViewController are CustomCell, and I have already used this in others ViewControllers.&lt;/p&gt;&lt;p&gt;Should I take something more into account when making a UITableViewControllers in the center of a Drawer?&lt;/p&gt;&lt;p&gt;How do I solve the problem?&lt;/p&gt;&lt;p&gt;&lt;img src="https://intersoftpt.com/Community/Attachments/14431/Pregunta.jpg" style="border:none;"&gt; &lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;</description></item><item><title>How to make listview inside another listview</title><link>http://www.intersoftsolutions.com/Community/Tags/listviewmodel/</link><pubDate>Tue, 14 Apr 2015 10:17:49 GMT</pubDate><dc:creator>cristobal@sbsoftware.es</dc:creator><category>android</category><category>Crosslight</category><category>listview</category><category>listviewmodel</category><description>&lt;p&gt;Hi!&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want to make a ListView inside another listview. I'm not sure if I need use fragment or another activity.&lt;/p&gt;&lt;p&gt;Please, see the attached image.&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Thank you very much&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>