<?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: Project #0: iGoogle-like Drag &amp; Drop Portal v2.0</title>
	<atom:link href="http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 30 Jun 2011 08:33:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Michel Hiemstra</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-6348</link>
		<dc:creator>Michel Hiemstra</dc:creator>
		<pubDate>Thu, 26 May 2011 21:50:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-6348</guid>
		<description>@Jaap, you just assigned a empty variable which generates a syntax error, please use


var settings = {};

If you assign the settings from my example indeed its static, thats the point :) making it dynamic with your own code</description>
		<content:encoded><![CDATA[<p>@Jaap, you just assigned a empty variable which generates a syntax error, please use</p>
<p>var settings = {};</p>
<p>If you assign the settings from my example indeed its static, thats the point <img src='http://www.michelhiemstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  making it dynamic with your own code</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaap</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-6321</link>
		<dc:creator>Jaap</dc:creator>
		<pubDate>Tue, 24 May 2011 09:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-6321</guid>
		<description>Ah I know where the error is, in:
var settings 	=;

This don&#039;t activates the function on my page and therefore the boxes won&#039;t appear. When I take the var setttings from your example: 

var settings 	= {&quot;column-1&quot;:[&quot;block-1&quot;],&quot;column-2&quot;:[&quot;block-3&quot;,&quot;block-4&quot;],&quot;column-3&quot;:[&quot;block-2&quot;]};

The boxes appear. But it is not dynamic anymore.

I tried everything but still not able to activate the function, 
can you help me?</description>
		<content:encoded><![CDATA[<p>Ah I know where the error is, in:<br />
var settings 	=;</p>
<p>This don&#8217;t activates the function on my page and therefore the boxes won&#8217;t appear. When I take the var setttings from your example: </p>
<p>var settings 	= {&#8220;column-1&#8243;:["block-1"],&#8221;column-2&#8243;:["block-3","block-4"],&#8221;column-3&#8243;:["block-2"]};</p>
<p>The boxes appear. But it is not dynamic anymore.</p>
<p>I tried everything but still not able to activate the function,<br />
can you help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaap</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-6320</link>
		<dc:creator>Jaap</dc:creator>
		<pubDate>Tue, 24 May 2011 08:08:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-6320</guid>
		<description>Hi Michel!

This is what i&#039;m looking for!, It&#039;s only not possible for me to show the boxes. I uncommented the lines, replaced &lt;? by &lt;?php, and made succesfully connection to the database. But the boxes just don&#039;t appear. In my firebug i get an error on the DOM it said: &quot;Error: &quot;throw $continue&quot; is deprecated, use &quot;return&quot; instead&quot; This refers to the prototype.js. I don&#039;t know if that has anything to do with the problem.

Thanks in advance!</description>
		<content:encoded><![CDATA[<p>Hi Michel!</p>
<p>This is what i&#8217;m looking for!, It&#8217;s only not possible for me to show the boxes. I uncommented the lines, replaced &lt;? by &lt;?php, and made succesfully connection to the database. But the boxes just don&#039;t appear. In my firebug i get an error on the DOM it said: &quot;Error: &quot;throw $continue&quot; is deprecated, use &quot;return&quot; instead&quot; This refers to the prototype.js. I don&#039;t know if that has anything to do with the problem.</p>
<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle Faucett</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-5834</link>
		<dc:creator>Kyle Faucett</dc:creator>
		<pubDate>Sat, 02 Apr 2011 07:36:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-5834</guid>
		<description>To save the movement of blocks in the same container, you can turn ghosting on as Michel suggested, or comment out this line in the onEnd function (by prepending //) of dragdrop.js:

if(this.lastValue != Sortable.serialize(this.element))</description>
		<content:encoded><![CDATA[<p>To save the movement of blocks in the same container, you can turn ghosting on as Michel suggested, or comment out this line in the onEnd function (by prepending //) of dragdrop.js:</p>
<p>if(this.lastValue != Sortable.serialize(this.element))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-5710</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 22 Mar 2011 12:04:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-5710</guid>
		<description>&lt;blockquote&gt;
&lt;a href=&quot;#comment-5659&quot; rel=&quot;nofollow&quot;&gt;
&lt;strong&gt;&lt;em&gt;Simon:&lt;/em&gt;&lt;/strong&gt;
&lt;/a&gt;
 Hi Michel,
I’ve got an issue trying to make your script working. I installed correctly the DB and uncomented the lines in the blocks_save.php script but the blocks do not appears on the webpage.
In installed Firebug and it tells me “invalid XML markup
var settings = ; ”
I looked on google and it seems to come from the “&lt;?&quot; so I modified my php.ini file on my server to enable short_open_tag and it is still not working.
Can someone helps me fixing this issue please ?
Thanks in advance
&lt;/blockquote&gt;

For those who has the same issue than me, just replace &lt;? by &lt;?php everywhere.

Thanks Michel for your script, I&#039;ve got it working now.</description>
		<content:encoded><![CDATA[<blockquote><p>
<a href="#comment-5659" rel="nofollow"><br />
<strong><em>Simon:</em></strong><br />
</a><br />
 Hi Michel,<br />
I’ve got an issue trying to make your script working. I installed correctly the DB and uncomented the lines in the blocks_save.php script but the blocks do not appears on the webpage.<br />
In installed Firebug and it tells me “invalid XML markup<br />
var settings = ; ”<br />
I looked on google and it seems to come from the “&lt;?&#8221; so I modified my php.ini file on my server to enable short_open_tag and it is still not working.<br />
Can someone helps me fixing this issue please ?<br />
Thanks in advance
</p></blockquote>
<p>For those who has the same issue than me, just replace &lt;? by &lt;?php everywhere.</p>
<p>Thanks Michel for your script, I&#039;ve got it working now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Bondono</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-5661</link>
		<dc:creator>James Bondono</dc:creator>
		<pubDate>Thu, 17 Mar 2011 19:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-5661</guid>
		<description>Just spun this up... Worked like a charm.  
Being a noob, I was stuck as it wasn&#039;t saving changes, but read I followed the following comments: 
Followed Marcus #52 (removed the // from both Insert and update lines) - now switching from column to column is saved. 
Followed Iris #86 (changed - to _  for block id&#039;s in both index.php and database), now order in column are saved. 

Thanks for great script - thanks for great comments to help me spin this up!</description>
		<content:encoded><![CDATA[<p>Just spun this up&#8230; Worked like a charm.<br />
Being a noob, I was stuck as it wasn&#8217;t saving changes, but read I followed the following comments:<br />
Followed Marcus #52 (removed the // from both Insert and update lines) &#8211; now switching from column to column is saved.<br />
Followed Iris #86 (changed &#8211; to _  for block id&#8217;s in both index.php and database), now order in column are saved. </p>
<p>Thanks for great script &#8211; thanks for great comments to help me spin this up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-5659</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Thu, 17 Mar 2011 10:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-5659</guid>
		<description>Hi Michel,

I&#039;ve got an issue trying to make your script working. I installed correctly the DB and uncomented the lines in the blocks_save.php script but the blocks do not appears on the webpage.

In installed Firebug and it tells me &quot;invalid XML markup
var settings = ; &quot;

I looked on google and it seems to come from the &quot;&lt;?&quot; so I modified my php.ini file on my server to enable short_open_tag and it is still not working.

Can someone helps me fixing this issue please ?

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi Michel,</p>
<p>I&#8217;ve got an issue trying to make your script working. I installed correctly the DB and uncomented the lines in the blocks_save.php script but the blocks do not appears on the webpage.</p>
<p>In installed Firebug and it tells me &#8220;invalid XML markup<br />
var settings = ; &#8221;</p>
<p>I looked on google and it seems to come from the &#8220;&lt;?&quot; so I modified my php.ini file on my server to enable short_open_tag and it is still not working.</p>
<p>Can someone helps me fixing this issue please ?</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qaiser</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-5312</link>
		<dc:creator>qaiser</dc:creator>
		<pubDate>Fri, 18 Feb 2011 20:08:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-5312</guid>
		<description>If I empty a column, I&#039;m unable to drop any boxes back into it. How can I make the column fixed so that boxes can be dropped back into it</description>
		<content:encoded><![CDATA[<p>If I empty a column, I&#8217;m unable to drop any boxes back into it. How can I make the column fixed so that boxes can be dropped back into it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Theo</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-5263</link>
		<dc:creator>Theo</dc:creator>
		<pubDate>Wed, 16 Feb 2011 10:05:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-5263</guid>
		<description>Please fix the problem with prototype 1.7 (which is needed for IE9)

Drag and drop works, but the blocks trip over each other.</description>
		<content:encoded><![CDATA[<p>Please fix the problem with prototype 1.7 (which is needed for IE9)</p>
<p>Drag and drop works, but the blocks trip over each other.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.michelhiemstra.nl/blog/igoogle-like-drag-drop-portal-v20/comment-page-1/#comment-4761</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 19 Jan 2011 16:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.michelhiemstra.nl/blog/?p=77#comment-4761</guid>
		<description>&lt;blockquote&gt;
&lt;a href=&quot;#comment-4394&quot; rel=&quot;nofollow&quot;&gt;
&lt;strong&gt;&lt;em&gt;Pragti:&lt;/em&gt;&lt;/strong&gt;
&lt;/a&gt;
I have some Issue:
1) If i take all blocks from any column, i m unable to add the block back to that column.

&lt;/blockquote&gt;

Couldn&#039;t you just add a hidden block, like with style=display:none, that would act as a place holder for a top row of blocks in all the columns?</description>
		<content:encoded><![CDATA[<blockquote><p>
<a href="#comment-4394" rel="nofollow"><br />
<strong><em>Pragti:</em></strong><br />
</a><br />
I have some Issue:<br />
1) If i take all blocks from any column, i m unable to add the block back to that column.</p>
</blockquote>
<p>Couldn&#8217;t you just add a hidden block, like with style=display:none, that would act as a place holder for a top row of blocks in all the columns?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

