<?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: jQuery Serialize List Plugin</title>
	<atom:link href="http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/</link>
	<description>continuing education</description>
	<lastBuildDate>Thu, 15 Dec 2011 20:08:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: FAk</title>
		<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/comment-page-1/#comment-433</link>
		<dc:creator>FAk</dc:creator>
		<pubDate>Sun, 06 Feb 2011 08:23:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.botsko.net/blog/?p=252#comment-433</guid>
		<description>It&#039;s a pity, that when you have a LI item, you cannot nest another LI into it, probably a disadvantage of sortable() right?</description>
		<content:encoded><![CDATA[<p>It&#8217;s a pity, that when you have a LI item, you cannot nest another LI into it, probably a disadvantage of sortable() right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Botsko</title>
		<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/comment-page-1/#comment-415</link>
		<dc:creator>Michael Botsko</dc:creator>
		<pubDate>Mon, 20 Dec 2010 17:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.botsko.net/blog/?p=252#comment-415</guid>
		<description>Thanks! A fix has been pushed to github.</description>
		<content:encoded><![CDATA[<p>Thanks! A fix has been pushed to github.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MGiesbers</title>
		<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/comment-page-1/#comment-414</link>
		<dc:creator>MGiesbers</dc:creator>
		<pubDate>Mon, 20 Dec 2010 11:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.botsko.net/blog/?p=252#comment-414</guid>
		<description>A small bug found in this plugin, the line where your recursive call the serializelist function to append the children to the serialized string.

line nr 46 (currently):
serialStr += $(this).serializelist({&#039;prepend&#039;: child_base, &#039;is_child&#039;: true});

line nr 46 (should be):
serialStr += $(this).serializelist({&#039;prepend&#039;: child_base, &#039;is_child&#039;: true, &#039;attributes&#039;:opts.attributes});</description>
		<content:encoded><![CDATA[<p>A small bug found in this plugin, the line where your recursive call the serializelist function to append the children to the serialized string.</p>
<p>line nr 46 (currently):<br />
serialStr += $(this).serializelist({&#8216;prepend&#8217;: child_base, &#8216;is_child&#8217;: true});</p>
<p>line nr 46 (should be):<br />
serialStr += $(this).serializelist({&#8216;prepend&#8217;: child_base, &#8216;is_child&#8217;: true, &#8216;attributes&#8217;:opts.attributes});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DrakeData</title>
		<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/comment-page-1/#comment-134</link>
		<dc:creator>DrakeData</dc:creator>
		<pubDate>Sat, 02 Oct 2010 09:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.botsko.net/blog/?p=252#comment-134</guid>
		<description>or if you need to serialize nested lists, you might want to give http://plugins.jquery.com/project/serializeTree a try</description>
		<content:encoded><![CDATA[<p>or if you need to serialize nested lists, you might want to give <a href="http://plugins.jquery.com/project/serializeTree" rel="nofollow">http://plugins.jquery.com/project/serializeTree</a> a try</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Botsko</title>
		<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/comment-page-1/#comment-130</link>
		<dc:creator>Michael Botsko</dc:creator>
		<pubDate>Wed, 15 Sep 2010 15:34:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.botsko.net/blog/?p=252#comment-130</guid>
		<description>Why not just use the unserialize function itself?</description>
		<content:encoded><![CDATA[<p>Why not just use the unserialize function itself?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/comment-page-1/#comment-129</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Mon, 13 Sep 2010 16:07:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.botsko.net/blog/?p=252#comment-129</guid>
		<description>Nevermind. After some researching found
parse_str($_POST[&#039;sort_page&#039;], $unserialized);
Printing the $unserialized gives me the array.

Thanks!</description>
		<content:encoded><![CDATA[<p>Nevermind. After some researching found<br />
parse_str($_POST['sort_page'], $unserialized);<br />
Printing the $unserialized gives me the array.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/comment-page-1/#comment-128</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Mon, 13 Sep 2010 16:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.botsko.net/blog/?p=252#comment-128</guid>
		<description>Do you think you could post a snippet of the PHP you are using to convert this into a standard array?

PHP just outputs a huge string like
&amp;ul[0][id]=page_2&amp;ul[0][class]=&amp;ul[1][id]=page_4&amp;ul[1][class]=sitemap_liOpen&amp;ul[1][children][0][id]

Thanks!</description>
		<content:encoded><![CDATA[<p>Do you think you could post a snippet of the PHP you are using to convert this into a standard array?</p>
<p>PHP just outputs a huge string like<br />
&amp;ul[0][id]=page_2&amp;ul[0][class]=&amp;ul[1][id]=page_4&amp;ul[1][class]=sitemap_liOpen&amp;ul[1][children][0][id]</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Botsko</title>
		<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/comment-page-1/#comment-18</link>
		<dc:creator>Michael Botsko</dc:creator>
		<pubDate>Thu, 20 May 2010 15:01:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.botsko.net/blog/?p=252#comment-18</guid>
		<description>I&#039;m using PHP on the backend which will properly convert the parameters into an array which I can then use internally. If your backend language doesn&#039;t automatically convert that into a usable object or array, I&#039;m sure there are code samples out there. Once it&#039;s converted into an array, it&#039;s just a matter of iterating over those elements.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using PHP on the backend which will properly convert the parameters into an array which I can then use internally. If your backend language doesn&#8217;t automatically convert that into a usable object or array, I&#8217;m sure there are code samples out there. Once it&#8217;s converted into an array, it&#8217;s just a matter of iterating over those elements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett</title>
		<link>http://www.botsko.net/blog/2009/01/29/jquery_serialize_list_plugin/comment-page-1/#comment-16</link>
		<dc:creator>Brett</dc:creator>
		<pubDate>Thu, 20 May 2010 04:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.botsko.net/blog/?p=252#comment-16</guid>
		<description>This is fantastic, but with the string your plugin provides, how to do you handle that in the backend to insert the ordering in the database?</description>
		<content:encoded><![CDATA[<p>This is fantastic, but with the string your plugin provides, how to do you handle that in the backend to insert the ordering in the database?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

