<?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 for Redips | spideR Net</title>
	<atom:link href="http://www.redips.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redips.net</link>
	<description>Techniques and Web Technologies</description>
	<lastBuildDate>Fri, 12 Mar 2010 08:51:54 +0100</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Drag and Drop table content with JavaScript by dbunic</title>
		<link>http://www.redips.net/javascript/drag-and-drop-table-content/comment-page-12/#comment-1839</link>
		<dc:creator>dbunic</dc:creator>
		<pubDate>Fri, 12 Mar 2010 08:51:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=63#comment-1839</guid>
		<description>First my apologies for a delay ... I was busy for the last few weeks.

@HKad - I sent prepared example to you with 2x2 table so I assume that problem is solved.

@senthil - Drag and drop works in Opera 10.50 version. I made tests on following examples:

&lt;a href=&quot;/javascript/drag-and-drop-table-content/&quot; title=&quot;REDIPS: Drag and drop table content with JavaScript&quot; rel=&quot;nofollow&quot;&gt;Drag and drop table content with JavaScript&lt;/a&gt;
&lt;a href=&quot;/javascript/drag-and-drop-example-2/&quot; title=&quot;REDIPS: JavaScript Drag and Drop example 2&quot; rel=&quot;nofollow&quot;&gt;JavaScript Drag and Drop example 2&lt;/a&gt;
&lt;a href=&quot;/javascript/drag-and-drop-example-3/&quot; title=&quot;REDIPS: JavaScript Drag and Drop example 3&quot; rel=&quot;nofollow&quot;&gt;JavaScript Drag and Drop example 3&lt;/a&gt;

... and everything works just fine. I would be grateful if you can make a little more detailed description of the problem - thanks.

@Danny - This JavaScript framework still doesn&#039;t have option to move other objects from dropped position. Your suggestion seems OK and I will consider it in future development. Thank you!

@Garwain - I noticed form element reseting in IE6 browser. IE8, FF3, Google Chrome and Opera 10 doesn&#039;t have this problem. Maybe there can be workaround to remember form element settings before dragging and to set values after element is dropped. This is just a hint to fix drag-n-drop form elements for messy IE6 but I would rather make browser upgrade ;)
&lt;a href=&quot;http://www.ie6nomore.com/&quot; title=&quot;IE6 no more&quot; rel=&quot;nofollow&quot;&gt;www.ie6nomore.com&lt;/a&gt;
And yes, you can modify save_content() function to send radio buttons values. After function scans desired table, you can make form elements loop and append values to the URL. On the server side, script should differ DIV positions and form element values.

@Andy - &lt;a href=&quot;/javascript/drag-and-drop-example-3/&quot; title=&quot;REDIPS: JavaScript Drag and Drop example 3&quot; rel=&quot;nofollow&quot;&gt;JavaScript Drag and Drop example 3&lt;/a&gt; is modified. If checkbox in upper left corner of main table is checked then school subject will be placed across table row. Hope this code in myhandler_dropped() will help you.

@Fatih - After mouse button is released, dragged DIV is moved from his parent node to the selected table cell. Actually, DIV is appended to the end of the list of children of a specified table cell. Maybe it could be possible to reorder elements in the same table cell and I will consider your sugestion in future releases. Thank you.

@Rocky - To return dropped DIV element to the previous location, place this line in button onclick event:

REDIPS.drag.source_cell.appendChild(REDIPS.drag.obj);

@Poz - Unfortunately scrolling works only on browser window. So, if table is bigger then browser window and element is dragging to the boundary, main window will start to scroll.</description>
		<content:encoded><![CDATA[<p>First my apologies for a delay ... I was busy for the last few weeks.</p>
<p>@HKad - I sent prepared example to you with 2x2 table so I assume that problem is solved.</p>
<p>@senthil - Drag and drop works in Opera 10.50 version. I made tests on following examples:</p>
<p><a href="/javascript/drag-and-drop-table-content/" title="REDIPS: Drag and drop table content with JavaScript" rel="nofollow">Drag and drop table content with JavaScript</a><br />
<a href="/javascript/drag-and-drop-example-2/" title="REDIPS: JavaScript Drag and Drop example 2" rel="nofollow">JavaScript Drag and Drop example 2</a><br />
<a href="/javascript/drag-and-drop-example-3/" title="REDIPS: JavaScript Drag and Drop example 3" rel="nofollow">JavaScript Drag and Drop example 3</a></p>
<p>... and everything works just fine. I would be grateful if you can make a little more detailed description of the problem - thanks.</p>
<p>@Danny - This JavaScript framework still doesn't have option to move other objects from dropped position. Your suggestion seems OK and I will consider it in future development. Thank you!</p>
<p>@Garwain - I noticed form element reseting in IE6 browser. IE8, FF3, Google Chrome and Opera 10 doesn't have this problem. Maybe there can be workaround to remember form element settings before dragging and to set values after element is dropped. This is just a hint to fix drag-n-drop form elements for messy IE6 but I would rather make browser upgrade <img src='http://www.redips.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<a href="http://www.ie6nomore.com/" title="IE6 no more" rel="nofollow">http://www.ie6nomore.com</a><br />
And yes, you can modify save_content() function to send radio buttons values. After function scans desired table, you can make form elements loop and append values to the URL. On the server side, script should differ DIV positions and form element values.</p>
<p>@Andy - <a href="/javascript/drag-and-drop-example-3/" title="REDIPS: JavaScript Drag and Drop example 3" rel="nofollow">JavaScript Drag and Drop example 3</a> is modified. If checkbox in upper left corner of main table is checked then school subject will be placed across table row. Hope this code in myhandler_dropped() will help you.</p>
<p>@Fatih - After mouse button is released, dragged DIV is moved from his parent node to the selected table cell. Actually, DIV is appended to the end of the list of children of a specified table cell. Maybe it could be possible to reorder elements in the same table cell and I will consider your sugestion in future releases. Thank you.</p>
<p>@Rocky - To return dropped DIV element to the previous location, place this line in button onclick event:</p>
<p>REDIPS.drag.source_cell.appendChild(REDIPS.drag.obj);</p>
<p>@Poz - Unfortunately scrolling works only on browser window. So, if table is bigger then browser window and element is dragging to the boundary, main window will start to scroll.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Drag and Drop example 3 by dbunic</title>
		<link>http://www.redips.net/javascript/drag-and-drop-example-3/comment-page-1/#comment-1838</link>
		<dc:creator>dbunic</dc:creator>
		<pubDate>Thu, 11 Mar 2010 16:39:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=279#comment-1838</guid>
		<description>@Khaleel - In &lt;a href=&quot;/my/tar/redips2.tar.gz&quot; title=&quot;Drag and drop table content with JavaScript&quot; rel=&quot;nofollow&quot;&gt;redips2.tar.gz&lt;/a&gt; package you will find this demo with &lt;strong&gt;save&lt;/strong&gt; function - MySQL / PHP. Package also contains &lt;em&gt;database.sql&lt;/em&gt; script to create needed MySQL tables.</description>
		<content:encoded><![CDATA[<p>@Khaleel - In <a href="/my/tar/redips2.tar.gz" title="Drag and drop table content with JavaScript" rel="nofollow">redips2.tar.gz</a> package you will find this demo with <strong>save</strong> function - MySQL / PHP. Package also contains <em>database.sql</em> script to create needed MySQL tables.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Drag and Drop example 3 by Khaleel</title>
		<link>http://www.redips.net/javascript/drag-and-drop-example-3/comment-page-1/#comment-1837</link>
		<dc:creator>Khaleel</dc:creator>
		<pubDate>Thu, 11 Mar 2010 16:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=279#comment-1837</guid>
		<description>Hi

This is a nice tutorial and snippet. Smooth looking and operating thanks!

Can you possibly show some examples with PHP/mySQL?

An example would be allowing the user or the session to have the data saved and placed into mysql.

Khaleel</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>This is a nice tutorial and snippet. Smooth looking and operating thanks!</p>
<p>Can you possibly show some examples with PHP/mySQL?</p>
<p>An example would be allowing the user or the session to have the data saved and placed into mysql.</p>
<p>Khaleel</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Drag and Drop table content with JavaScript by Poz</title>
		<link>http://www.redips.net/javascript/drag-and-drop-table-content/comment-page-12/#comment-1836</link>
		<dc:creator>Poz</dc:creator>
		<pubDate>Thu, 11 Mar 2010 15:09:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=63#comment-1836</guid>
		<description>Excellent code, does almost everything I need it to!

However I&#039;m having an issue with the scrolling when inside a container. Am I doing something wrong or is it not possible to scroll according to it&#039;s parent container?

e.g. I have my &quot;drag&quot; div inside an asp.net panel control and at present the panel is not scrollable when dragging near it&#039;s boundaries.

Any help would be greatly appreciated.

Thanks.</description>
		<content:encoded><![CDATA[<p>Excellent code, does almost everything I need it to!</p>
<p>However I'm having an issue with the scrolling when inside a container. Am I doing something wrong or is it not possible to scroll according to it's parent container?</p>
<p>e.g. I have my "drag" div inside an asp.net panel control and at present the panel is not scrollable when dragging near it's boundaries.</p>
<p>Any help would be greatly appreciated.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Drag and Drop example 2 by dbunic</title>
		<link>http://www.redips.net/javascript/drag-and-drop-example-2/comment-page-1/#comment-1835</link>
		<dc:creator>dbunic</dc:creator>
		<pubDate>Thu, 11 Mar 2010 13:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=229#comment-1835</guid>
		<description>@Marc Love - Please see &quot;School timetable&quot; &lt;a href=&quot;/javascript/drag-and-drop-example-3/&quot; title=&quot;JavaScript Drag and Drop example 3&quot; rel=&quot;nofollow&quot;&gt;JavaScript Drag and Drop example 3&lt;/a&gt;. Left table contains school subjects with infinity cloning possibility.</description>
		<content:encoded><![CDATA[<p>@Marc Love - Please see "School timetable" <a href="/javascript/drag-and-drop-example-3/" title="JavaScript Drag and Drop example 3" rel="nofollow">JavaScript Drag and Drop example 3</a>. Left table contains school subjects with infinity cloning possibility.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Drag and Drop table content with JavaScript by Rocky</title>
		<link>http://www.redips.net/javascript/drag-and-drop-table-content/comment-page-12/#comment-1834</link>
		<dc:creator>Rocky</dc:creator>
		<pubDate>Thu, 11 Mar 2010 00:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=63#comment-1834</guid>
		<description>How can I click on a button and reset one of the div&#039;s to go back to default position that it started from?</description>
		<content:encoded><![CDATA[<p>How can I click on a button and reset one of the div's to go back to default position that it started from?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Drag and Drop example 2 by Marc Love</title>
		<link>http://www.redips.net/javascript/drag-and-drop-example-2/comment-page-1/#comment-1833</link>
		<dc:creator>Marc Love</dc:creator>
		<pubDate>Wed, 10 Mar 2010 13:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=229#comment-1833</guid>
		<description>Hi, 

love this example. How would you edit this code so that the dragabble element can be cloned an infinite number of times?</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>love this example. How would you edit this code so that the dragabble element can be cloned an infinite number of times?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Drag and Drop table content with JavaScript by Fatih</title>
		<link>http://www.redips.net/javascript/drag-and-drop-table-content/comment-page-12/#comment-1832</link>
		<dc:creator>Fatih</dc:creator>
		<pubDate>Wed, 10 Mar 2010 11:44:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=63#comment-1832</guid>
		<description>hey, cool script
i have discoverd the script for two days but i have a problem with reordering. i didn&#039;t find correct way to reorder when single-cell drag-dropping. Dragged divs is always pushed last position in td.(always appen last did not insert) is anyone know the way to solve this problem? Thanks</description>
		<content:encoded><![CDATA[<p>hey, cool script<br />
i have discoverd the script for two days but i have a problem with reordering. i didn't find correct way to reorder when single-cell drag-dropping. Dragged divs is always pushed last position in td.(always appen last did not insert) is anyone know the way to solve this problem? Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Drag and Drop table content with JavaScript by Andy</title>
		<link>http://www.redips.net/javascript/drag-and-drop-table-content/comment-page-12/#comment-1830</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 09 Mar 2010 17:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=63#comment-1830</guid>
		<description>I want to have a table cell that, when clone is dragged onto it, the cloned element gets added to all the cells in that row. Can someone point me in the right direction? Thanks!</description>
		<content:encoded><![CDATA[<p>I want to have a table cell that, when clone is dragged onto it, the cloned element gets added to all the cells in that row. Can someone point me in the right direction? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Write to a log file with PHP by aravin</title>
		<link>http://www.redips.net/php/write-to-log-file/comment-page-1/#comment-1828</link>
		<dc:creator>aravin</dc:creator>
		<pubDate>Mon, 08 Mar 2010 14:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.redips.net/?p=36#comment-1828</guid>
		<description>hello, i&#039;m still beginner in php. i want my php to use data in log file and filter it on linux platform. For example i want my php to take data in log file in my honeypot. then the raw data will be filter into certain category. can anybody help me because i need to use it into my project.</description>
		<content:encoded><![CDATA[<p>hello, i'm still beginner in php. i want my php to use data in log file and filter it on linux platform. For example i want my php to take data in log file in my honeypot. then the raw data will be filter into certain category. can anybody help me because i need to use it into my project.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
