<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Source Code For Ajax Based Drag Drop Navigation Tree in Ruby on Rails &#8211; the tree works well with firefox and IE-6</title>
	<atom:link href="http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/</link>
	<description>geeks redefined</description>
	<lastBuildDate>Fri, 25 Jan 2008 11:46:02 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: rails kb &#187; Blog Archive &#187; Drag and Drop Ajax Tree Control for Rails</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-1107</link>
		<dc:creator>rails kb &#187; Blog Archive &#187; Drag and Drop Ajax Tree Control for Rails</dc:creator>
		<pubDate>Fri, 25 Jan 2008 11:46:02 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-1107</guid>
		<description>[...] best I&#8217;ve found is &#8230; AjaxTree of Sur Max the creator of the SimpleCaptcha Rails [...]</description>
		<content:encoded><![CDATA[<p>[...] best I&#8217;ve found is &#8230; AjaxTree of Sur Max the creator of the SimpleCaptcha Rails [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Susan</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-783</link>
		<dc:creator>Susan</dc:creator>
		<pubDate>Thu, 05 Apr 2007 03:11:25 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-783</guid>
		<description>Cool! Well done!  And thanks for sharing!!
I am slightly frustrated that I can&#039;t drag a formerly root-item out from a leaf position.  I can make 2 a branch of 4, but I can&#039;t place it back in it&#039;s original position.
I have been looking for some code to dragndrop images into order, and I think I will be able to learn from your sample.  THANKS!!</description>
		<content:encoded><![CDATA[<p>Cool! Well done!  And thanks for sharing!!<br />
I am slightly frustrated that I can&#8217;t drag a formerly root-item out from a leaf position.  I can make 2 a branch of 4, but I can&#8217;t place it back in it&#8217;s original position.<br />
I have been looking for some code to dragndrop images into order, and I think I will be able to learn from your sample.  THANKS!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sur Max</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-156</link>
		<dc:creator>Sur Max</dc:creator>
		<pubDate>Tue, 26 Dec 2006 07:47:18 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-156</guid>
		<description>Thanks Steven,
I guess i have missed that while extracting it from my application.
I will add it now.

Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks Steven,<br />
I guess i have missed that while extracting it from my application.<br />
I will add it now.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: StevenG</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-155</link>
		<dc:creator>StevenG</dc:creator>
		<pubDate>Tue, 26 Dec 2006 06:16:59 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-155</guid>
		<description>Thanks for submitting this code. I have been looking at Javascript versions, but yours is much simpler and RoR native! It seemed the toggleBackground function was never called, so the selected item would never highlight. There may be a better way, but it can be fixed by adding
&lt;code&gt;
; toggleBackground($(&#039;#{n.id}_tree_item&#039;));
&lt;/code&gt;
to the loading or complete portion of 
&lt;code&gt;


  
  
  {...},
  :loading=&gt;&quot;Element.show(&#039;tree_indicator&#039;)&quot;,
  :complete=&gt;&quot;Element.hide(&#039;tree_indicator&#039;); &quot;
  )}
  %&gt;
&lt;/code&gt;
in _ajax_tree.rhtml. In other words, you want
&lt;code&gt;
  :loading=&gt;&quot;Element.show(&#039;tree_indicator&#039;); 
toggleBackground($(&#039;#{n.id}_tree_item&#039;));&quot;,
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Thanks for submitting this code. I have been looking at Javascript versions, but yours is much simpler and RoR native! It seemed the toggleBackground function was never called, so the selected item would never highlight. There may be a better way, but it can be fixed by adding<br />
<code><br />
; toggleBackground($('#{n.id}_tree_item'));<br />
</code><br />
to the loading or complete portion of<br />
<code></p>
<p>  {...},<br />
  :loading=&gt;"Element.show('tree_indicator')",<br />
  :complete=&gt;"Element.hide('tree_indicator'); "<br />
  )}<br />
  %&gt;<br />
</code><br />
in _ajax_tree.rhtml. In other words, you want<br />
<code><br />
  :loading=&gt;"Element.show('tree_indicator');<br />
toggleBackground($('#{n.id}_tree_item'));",<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sur Max</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-137</link>
		<dc:creator>Sur Max</dc:creator>
		<pubDate>Wed, 13 Dec 2006 14:34:11 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-137</guid>
		<description>Hi Kunjan !!
Drag any element and drop it onto an element of second level, and the dropped element will become child and become a third level element.
How you need not to explicitly specify any level for nodes, but just add any element having parent_id as the id of second level... third level... and so on.</description>
		<content:encoded><![CDATA[<p>Hi Kunjan !!<br />
Drag any element and drop it onto an element of second level, and the dropped element will become child and become a third level element.<br />
How you need not to explicitly specify any level for nodes, but just add any element having parent_id as the id of second level&#8230; third level&#8230; and so on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kunjan</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-136</link>
		<dc:creator>Kunjan</dc:creator>
		<pubDate>Wed, 13 Dec 2006 13:43:03 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-136</guid>
		<description>How do I display the tree upto 2 or more Levels? Currently it is being displayed till only 1 level..</description>
		<content:encoded><![CDATA[<p>How do I display the tree upto 2 or more Levels? Currently it is being displayed till only 1 level..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TimN</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-125</link>
		<dc:creator>TimN</dc:creator>
		<pubDate>Mon, 11 Dec 2006 04:38:42 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-125</guid>
		<description>Sur,

I created my own &quot;items&quot; table with the fields you had in your schema, but other than that, I did follow the steps you described... I think ;-)

Do you know of a publicly available URL where your example app is running so that I could check it out?

Best,
Tim</description>
		<content:encoded><![CDATA[<p>Sur,</p>
<p>I created my own &#8220;items&#8221; table with the fields you had in your schema, but other than that, I did follow the steps you described&#8230; I think <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Do you know of a publicly available URL where your example app is running so that I could check it out?</p>
<p>Best,<br />
Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sur Max</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-124</link>
		<dc:creator>Sur Max</dc:creator>
		<pubDate>Mon, 11 Dec 2006 03:36:32 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-124</guid>
		<description>Hi TimN !!

Well, before i figure out if there is any problem, could you try the  &lt;a href=&quot;http://ajaxonrails.wordpress.com/2006/11/26/ajaxonrailsdragdroptree/&quot; rel=&quot;nofollow&quot;&gt;&lt;b&gt;Sample Application&lt;/b&gt;&lt;/a&gt; in which you need not to code a single line but just need to follow 4 steps described &lt;a href=&quot;http://ajaxonrails.wordpress.com/2006/11/26/ajaxonrailsdragdroptree/&quot; rel=&quot;nofollow&quot;&gt;&lt;b&gt;Here&lt;/b&gt;&lt;/a&gt;.
I will look forward if the problem still persists, let me know in any case whether or not the application is running fine.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi TimN !!</p>
<p>Well, before i figure out if there is any problem, could you try the  <a href="http://ajaxonrails.wordpress.com/2006/11/26/ajaxonrailsdragdroptree/" rel="nofollow"><b>Sample Application</b></a> in which you need not to code a single line but just need to follow 4 steps described <a href="http://ajaxonrails.wordpress.com/2006/11/26/ajaxonrailsdragdroptree/" rel="nofollow"><b>Here</b></a>.<br />
I will look forward if the problem still persists, let me know in any case whether or not the application is running fine.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TimN</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-123</link>
		<dc:creator>TimN</dc:creator>
		<pubDate>Sun, 10 Dec 2006 22:40:20 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-123</guid>
		<description>Sur, 

Great project you are working on.  I&#039;ve implemented your code in the way you describe, but am still running into an RJS error.  When I click on a parent group on the &#039;show&#039; page, my browser shows a javascript error: 

RJS Error: 
TypeError: Effect.toggle is not a function

This happens to me on the Mac (Safari &amp; Firefox)  as well as on a PC (IE).

I am fairly certain I implemented your code correctly (I did it twice, just to be sure and named all files and DB table the same as your example).  Any ideas what I may be doing wrong?

Thanks,
Tim</description>
		<content:encoded><![CDATA[<p>Sur, </p>
<p>Great project you are working on.  I&#8217;ve implemented your code in the way you describe, but am still running into an RJS error.  When I click on a parent group on the &#8217;show&#8217; page, my browser shows a javascript error: </p>
<p>RJS Error:<br />
TypeError: Effect.toggle is not a function</p>
<p>This happens to me on the Mac (Safari &amp; Firefox)  as well as on a PC (IE).</p>
<p>I am fairly certain I implemented your code correctly (I did it twice, just to be sure and named all files and DB table the same as your example).  Any ideas what I may be doing wrong?</p>
<p>Thanks,<br />
Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sur Max</title>
		<link>http://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-105</link>
		<dc:creator>Sur Max</dc:creator>
		<pubDate>Tue, 05 Dec 2006 17:45:23 +0000</pubDate>
		<guid isPermaLink="false">https://ajaxonrails.wordpress.com/2006/08/18/sorce-code-for-ajax-based-drag-drop-navigation-tree-for-rails/#comment-105</guid>
		<description>Thanks Andy !!</description>
		<content:encoded><![CDATA[<p>Thanks Andy !!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
