<?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: AJAX-ed Todo List With PHP, MySQL &amp; jQuery</title>
	<atom:link href="http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/</link>
	<description>Web Development Tutorials &#38; Resources</description>
	<lastBuildDate>Wed, 16 May 2012 02:12:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Federico</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-23440</link>
		<dc:creator>Federico</dc:creator>
		<pubDate>Mon, 23 Apr 2012 05:09:41 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-23440</guid>
		<description>Hi,
I love your project so I decided to extend it.
Here you can find my version.
&lt;a href=&quot;http://www.itry.it/download/todo/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.itry.it/download/todo/&lt;/a&gt;
I&#039;ve added categories to todo items, so it is possibile to filter todo list.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I love your project so I decided to extend it.<br />
Here you can find my version.<br />
<a href="http://www.itry.it/download/todo/" target="_blank" rel="nofollow">http://www.itry.it/download/todo/</a><br />
I've added categories to todo items, so it is possibile to filter todo list.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dex Barrett</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-23158</link>
		<dc:creator>Dex Barrett</dc:creator>
		<pubDate>Wed, 04 Apr 2012 19:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-23158</guid>
		<description>I know real users/developers don&#039;t use IE but just for you to know, the sortable behavior won&#039;t work in IE 9. The weird thing is the demo page of JQuery&#039;s website does work. I noticed they call a method called .disableSelection() after .sortable()</description>
		<content:encoded><![CDATA[<p>I know real users/developers don't use IE but just for you to know, the sortable behavior won't work in IE 9. The weird thing is the demo page of JQuery's website does work. I noticed they call a method called .disableSelection() after .sortable()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dav</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-23154</link>
		<dc:creator>Dav</dc:creator>
		<pubDate>Wed, 04 Apr 2012 15:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-23154</guid>
		<description>Thank for your job but i replaced private $data by protected $data and i created a setter setDBLink().


private static $_dblink;
public static function setDBLink($link)
{
     self::$_dblink = $link;
}
</description>
		<content:encoded><![CDATA[<p>Thank for your job but i replaced private $data by protected $data and i created a setter setDBLink().</p>
<p>private static $_dblink;<br />
public static function setDBLink($link)<br />
{<br />
     self::$_dblink = $link;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-22609</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Sat, 10 Mar 2012 14:24:52 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-22609</guid>
		<description>I have been trying to &quot;conditionally color&quot; the output entries of the list.  I&#039;ve done this by adding the color to the &quot;echo $item;&quot; statement.  
e.g.   echo &quot;&lt;span style=\&quot;color:blue\&quot;&gt;$item&lt;/span&gt;&quot;;
I have also tried other methods like using &lt;font color.
This does what i want but the problem is that as soon as the color is added you can no longer move entries up &amp; down the list.  if you do, they go back to where they were on the next page refresh.  something about adding the color is affecting the function that &quot;reorders&quot; the list.
Does anyone here have an idea what could be causing this?
I have also noticed that when you enable the color then try to drag an entry around it looks different now.  The other entries don&#039;t &quot;pop&quot; out of the way like normal. you can still &quot;reorder&quot; them but the hole doesn&#039;t open up for you before you drop.
fyi, i have pulled any color settings for text from the CSS file.</description>
		<content:encoded><![CDATA[<p>I have been trying to &quot;conditionally color&quot; the output entries of the list.  I've done this by adding the color to the &quot;echo $item;&quot; statement.<br />
e.g.   echo &quot;&lt;span style=\&quot;color:blue\&quot;&gt;$item&lt;/span&gt;&quot;;<br />
I have also tried other methods like using &lt;font color.<br />
This does what i want but the problem is that as soon as the color is added you can no longer move entries up &amp; down the list.  if you do, they go back to where they were on the next page refresh.  something about adding the color is affecting the function that &quot;reorders&quot; the list.<br />
Does anyone here have an idea what could be causing this?<br />
I have also noticed that when you enable the color then try to drag an entry around it looks different now.  The other entries don't &quot;pop&quot; out of the way like normal. you can still &quot;reorder&quot; them but the hole doesn't open up for you before you drop.<br />
fyi, i have pulled any color settings for text from the CSS file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-22222</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Wed, 22 Feb 2012 23:24:54 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-22222</guid>
		<description>Honestly, I think it enhances readability to keep the braces with the function name.  I, personally, despise the sloppy look of having each code block leaving the curlies hanging in the wind.  The last time I checked, it&#039;s still considered &quot;personal style.&quot;

And cut some slack --  this wasn&#039;t a security demo.  He was demoing the core functionality.</description>
		<content:encoded><![CDATA[<p>Honestly, I think it enhances readability to keep the braces with the function name.  I, personally, despise the sloppy look of having each code block leaving the curlies hanging in the wind.  The last time I checked, it's still considered &quot;personal style.&quot;</p>
<p>And cut some slack --  this wasn't a security demo.  He was demoing the core functionality.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rory</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-22049</link>
		<dc:creator>rory</dc:creator>
		<pubDate>Mon, 13 Feb 2012 15:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-22049</guid>
		<description>I&#039;ve been playing around with this list for a while. Some really useful applications for it. I was just wondering how you would add more editable elements to the list item. Ive got it displaying the time that the todo were created, but say i wanted to add a &quot;details&quot; field aswell. any ideas?</description>
		<content:encoded><![CDATA[<p>I've been playing around with this list for a while. Some really useful applications for it. I was just wondering how you would add more editable elements to the list item. Ive got it displaying the time that the todo were created, but say i wanted to add a &quot;details&quot; field aswell. any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-21878</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Fri, 03 Feb 2012 10:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-21878</guid>
		<description>I found the answer:

&lt;pre&gt;
  $(&quot;.todoList&quot;).sortable({

axis        : &#039;y&#039;,              // Only vertical movements allowed
containment : &#039;window&#039;,         // Constrained by the window
update      : function(){       // The function is called after the todos are rearranged

 
  // The toArray method returns an array with the ids of the todos
            var arr = $(&quot;.todoList&quot;).sortable(&#039;toArray&#039;);
&lt;/pre&gt;

the containment value must be changed.</description>
		<content:encoded><![CDATA[<p>I found the answer:</p>
<pre>
  $(&quot;.todoList&quot;).sortable({

axis        : 'y',              // Only vertical movements allowed
containment : 'window',         // Constrained by the window
update      : function(){       // The function is called after the todos are rearranged

  // The toArray method returns an array with the ids of the todos
            var arr = $(&quot;.todoList&quot;).sortable('toArray');
</pre>
<p>the containment value must be changed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-21877</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Fri, 03 Feb 2012 07:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-21877</guid>
		<description>Hi,

I have a problem, if there are more than 20 Todo item, I can&#039;t put the first element at the end of the list...

An idea???

Regards</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have a problem, if there are more than 20 Todo item, I can't put the first element at the end of the list...</p>
<p>An idea???</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fahad</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-21530</link>
		<dc:creator>Fahad</dc:creator>
		<pubDate>Fri, 13 Jan 2012 10:39:08 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-21530</guid>
		<description>Hello. I tried creating the program but got stuck in how to create the database. Can you please provide me the program?</description>
		<content:encoded><![CDATA[<p>Hello. I tried creating the program but got stuck in how to create the database. Can you please provide me the program?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ernando</title>
		<link>http://tutorialzine.com/2010/03/ajax-todo-list-jquery-php-mysql-css/#comment-21486</link>
		<dc:creator>ernando</dc:creator>
		<pubDate>Tue, 10 Jan 2012 14:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=807#comment-21486</guid>
		<description>Is it possible to make a login form to have different todo pages for different users?</description>
		<content:encoded><![CDATA[<p>Is it possible to make a login form to have different todo pages for different users?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 356/356 objects using apc
Content Delivery Network via cdn.tutorialzine.com

Served from: tutorialzine.com @ 2012-05-16 18:08:09 -->
