<?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 on: PXSourceList: Source List Control for Mac OS X</title>
	<atom:link href="http://perspx.com/archives/pxsourcelist/feed/" rel="self" type="application/rss+xml" />
	<link>http://perspx.com/archives/pxsourcelist/</link>
	<description></description>
	<lastBuildDate>Mon, 09 Apr 2012 09:40:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: kdeda</title>
		<link>http://perspx.com/archives/pxsourcelist/#3539</link>
		<dc:creator>kdeda</dc:creator>
		<pubDate>Tue, 31 Jan 2012 15:54:49 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-3539</guid>
		<description>Nevermind

you have to set the autosave as well for this to kick in.

	[sourceList setAutosaveExpandedItems:YES];
	[sourceList setAutosaveName:@&quot;TEST1&quot;];</description>
		<content:encoded><![CDATA[<p>Nevermind</p>
<p>you have to set the autosave as well for this to kick in.</p>
<p>	[sourceList setAutosaveExpandedItems:YES];<br />
	[sourceList setAutosaveName:@"TEST1"];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kdeda</title>
		<link>http://perspx.com/archives/pxsourcelist/#3538</link>
		<dc:creator>kdeda</dc:creator>
		<pubDate>Tue, 31 Jan 2012 15:52:27 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-3538</guid>
		<description>setAutosaveExpandedItems: is not triggering the itemForPersistentObject:
i see support on the code, i am missing something?</description>
		<content:encoded><![CDATA[<p>setAutosaveExpandedItems: is not triggering the itemForPersistentObject:<br />
i see support on the code, i am missing something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Knightlie</title>
		<link>http://perspx.com/archives/pxsourcelist/#2448</link>
		<dc:creator>Knightlie</dc:creator>
		<pubDate>Sat, 24 Sep 2011 09:43:58 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-2448</guid>
		<description>Me again, I fixed it!</description>
		<content:encoded><![CDATA[<p>Me again, I fixed it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Knightlie</title>
		<link>http://perspx.com/archives/pxsourcelist/#2445</link>
		<dc:creator>Knightlie</dc:creator>
		<pubDate>Fri, 23 Sep 2011 20:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-2445</guid>
		<description>Hi Alex,

Thank you for this control, it&#039;s awesome.  The only problem I have is that the - (void)sourceList:setObjectValue:forItem: method of my data source isn&#039;t being called.  As far as I can tell outlineView:setObjectValue:forItem: in PXSourceList isn&#039;t being called either.

Is there anything I need to do other than set the data source and delegate?  I&#039;m using the SourceListItem code in my data source.</description>
		<content:encoded><![CDATA[<p>Hi Alex,</p>
<p>Thank you for this control, it&#8217;s awesome.  The only problem I have is that the &#8211; (void)sourceList:setObjectValue:forItem: method of my data source isn&#8217;t being called.  As far as I can tell outlineView:setObjectValue:forItem: in PXSourceList isn&#8217;t being called either.</p>
<p>Is there anything I need to do other than set the data source and delegate?  I&#8217;m using the SourceListItem code in my data source.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://perspx.com/archives/pxsourcelist/#1498</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sun, 16 Jan 2011 17:38:35 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-1498</guid>
		<description>@Alex

Thank you very much for you help. I understand it now :)</description>
		<content:encoded><![CDATA[<p>@Alex</p>
<p>Thank you very much for you help. I understand it now <img src='http://perspx.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Rozanski</title>
		<link>http://perspx.com/archives/pxsourcelist/#1497</link>
		<dc:creator>Alex Rozanski</dc:creator>
		<pubDate>Sun, 16 Jan 2011 10:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-1497</guid>
		<description>@Tom: That entirely depends on how your data model is constructed. The aim of the notification is to allow you to delete an item (if it can be deleted). This is done by removing it from your data model, and then calling -reloadData on the Source List to tell it that your data has changed. You can work out which row(s) are currently selected from the Notification object&#039;s userInfo dictionary, which has the selected indexes stored under the key @&quot;rows&quot;, and this can be converted to the item to be deleted by calling -itemForRow: on the Source List.</description>
		<content:encoded><![CDATA[<p>@Tom: That entirely depends on how your data model is constructed. The aim of the notification is to allow you to delete an item (if it can be deleted). This is done by removing it from your data model, and then calling -reloadData on the Source List to tell it that your data has changed. You can work out which row(s) are currently selected from the Notification object&#8217;s userInfo dictionary, which has the selected indexes stored under the key @&#8221;rows&#8221;, and this can be converted to the item to be deleted by calling -itemForRow: on the Source List.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://perspx.com/archives/pxsourcelist/#1496</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sun, 16 Jan 2011 10:15:46 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-1496</guid>
		<description>@Alex

Yes but how can I delete a item at a specific row? I don&#039;t really know how to delete an item itself.

Tom</description>
		<content:encoded><![CDATA[<p>@Alex</p>
<p>Yes but how can I delete a item at a specific row? I don&#8217;t really know how to delete an item itself.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Rozanski</title>
		<link>http://perspx.com/archives/pxsourcelist/#1495</link>
		<dc:creator>Alex Rozanski</dc:creator>
		<pubDate>Sat, 15 Jan 2011 23:04:14 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-1495</guid>
		<description>@Tom: You want to update your model first, to remove the item(s) to be deleted.

Then call -reloadData on the Source List to update the display; you may also want to change the selection by calling -selectRowIndexes:byExtendingSelection: to either remove the selection or alter it.</description>
		<content:encoded><![CDATA[<p>@Tom: You want to update your model first, to remove the item(s) to be deleted.</p>
<p>Then call -reloadData on the Source List to update the display; you may also want to change the selection by calling -selectRowIndexes:byExtendingSelection: to either remove the selection or alter it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://perspx.com/archives/pxsourcelist/#1492</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sat, 15 Jan 2011 20:08:47 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-1492</guid>
		<description>Hi Alex,
I have a question. You can detect that the delete key is pressed on a row.( in the method &quot;sourceListDeleteKeyPressedOnRows&quot;).

Could you make me an example how to remove the row on that the delete key was pressed? I&#039;m not really familiar with Mac development (and your PXSourceList..but soon) only with iPhone development.

Tom</description>
		<content:encoded><![CDATA[<p>Hi Alex,<br />
I have a question. You can detect that the delete key is pressed on a row.( in the method &#8220;sourceListDeleteKeyPressedOnRows&#8221;).</p>
<p>Could you make me an example how to remove the row on that the delete key was pressed? I&#8217;m not really familiar with Mac development (and your PXSourceList..but soon) only with iPhone development.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RightThat’sMyName</title>
		<link>http://perspx.com/archives/pxsourcelist/#1491</link>
		<dc:creator>RightThat’sMyName</dc:creator>
		<pubDate>Sat, 15 Jan 2011 12:21:29 +0000</pubDate>
		<guid isPermaLink="false">http://perspx.com/?p=1096#comment-1491</guid>
		<description>ouu...thank you very much for your help ^^ :). It worked.</description>
		<content:encoded><![CDATA[<p>ouu&#8230;thank you very much for your help ^^ <img src='http://perspx.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . It worked.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

