<?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: Tablekit Addons</title>
	<atom:link href="http://vlad.bailescu.ro/javascript/tablekit/feed/" rel="self" type="application/rss+xml" />
	<link>http://vlad.bailescu.ro</link>
	<description>Coloured pencils FTW</description>
	<lastBuildDate>Mon, 17 Oct 2011 22:36:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: liak</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-18322</link>
		<dc:creator>liak</dc:creator>
		<pubDate>Mon, 23 Feb 2009 19:11:49 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-18322</guid>
		<description>hey, this is a long shot, but I really would like to resize the columns from EVERY CELL and not just the header/1st row.

Why? Because if the table is 1000 rows long, I would have to scroll to the top of the page to resize the cell.

Any way this can be done?</description>
		<content:encoded><![CDATA[<p>hey, this is a long shot, but I really would like to resize the columns from EVERY CELL and not just the header/1st row.</p>
<p>Why? Because if the table is 1000 rows long, I would have to scroll to the top of the page to resize the cell.</p>
<p>Any way this can be done?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guido Leenders</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-3798</link>
		<dc:creator>Guido Leenders</dc:creator>
		<pubDate>Wed, 26 Nov 2008 09:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-3798</guid>
		<description>Hi Vlad,

I used the reordering kit, great! Found a little bug in cooperation with TableKit 1.3 (your code is based on 1.2).

With 1.3 you can not move a column from the end of the list to the first position and then into another column position other than the first or last (with use of  instead of ).

It required the following change to TableKit 1.3:

	getHeaderCells : function(table, cell) {
    if(!table) { table = $(cell).up(&#039;table&#039;); }
		var id = table.id;
    // Following lines taken from v1.2.1 to allow reordering to work when moving a column first totally to the left and then to the mid somewhere.
		if(!TableKit.heads[id]) {
			TableKit.heads[id] = $A((table.tHead &amp;&amp; table.tHead.rows.length &gt; 0) ? table.tHead.rows[table.tHead.rows.length-1].cells : table.rows[0].cells);
		}
		return TableKit.heads[id];
		// Orig v13: if(!TableKit.tables[id].dom.head) {
		// Orig v13:	TableKit.tables[id].dom.head = $A((table.tHead &amp;&amp; table.tHead.rows.length &gt; 0) ? table.tHead.rows[table.tHead.rows.length-1].cells : table.rows[0].cells);
		// Orig v13: }
		// Orig v13: return TableKit.tables[id].dom.head;</description>
		<content:encoded><![CDATA[<p>Hi Vlad,</p>
<p>I used the reordering kit, great! Found a little bug in cooperation with TableKit 1.3 (your code is based on 1.2).</p>
<p>With 1.3 you can not move a column from the end of the list to the first position and then into another column position other than the first or last (with use of  instead of ).</p>
<p>It required the following change to TableKit 1.3:</p>
<p>	getHeaderCells : function(table, cell) {<br />
    if(!table) { table = $(cell).up(&#8216;table&#8217;); }<br />
		var id = table.id;<br />
    // Following lines taken from v1.2.1 to allow reordering to work when moving a column first totally to the left and then to the mid somewhere.<br />
		if(!TableKit.heads[id]) {<br />
			TableKit.heads[id] = $A((table.tHead &amp;&amp; table.tHead.rows.length &gt; 0) ? table.tHead.rows[table.tHead.rows.length-1].cells : table.rows[0].cells);<br />
		}<br />
		return TableKit.heads[id];<br />
		// Orig v13: if(!TableKit.tables[id].dom.head) {<br />
		// Orig v13:	TableKit.tables[id].dom.head = $A((table.tHead &amp;&amp; table.tHead.rows.length &gt; 0) ? table.tHead.rows[table.tHead.rows.length-1].cells : table.rows[0].cells);<br />
		// Orig v13: }<br />
		// Orig v13: return TableKit.tables[id].dom.head;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vlad</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-754</link>
		<dc:creator>Vlad</dc:creator>
		<pubDate>Thu, 20 Sep 2007 07:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-754</guid>
		<description>Stephan, hang in... I&#039;ve been busy as a bee lately. As for re-init-ing TableKit, make sure you delete the column and/or row caches after each AjAX update/insert and only then try to init them.</description>
		<content:encoded><![CDATA[<p>Stephan, hang in&#8230; I&#8217;ve been busy as a bee lately. As for re-init-ing TableKit, make sure you delete the column and/or row caches after each AjAX update/insert and only then try to init them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephan</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-753</link>
		<dc:creator>Stephan</dc:creator>
		<pubDate>Thu, 20 Sep 2007 02:38:25 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-753</guid>
		<description>I have been watching for the TableKit Callback tutorial. I have been using the tablekit, but can not seem to get Ajax.Updater to accept and load changes to the table. I loose the sort features when I use the updater. Any ideas? I have a feeling I am updating the table incorrectly. If I use Insertion to add rows to the table, they are not sortable. So I am almost sure it is a init issue.</description>
		<content:encoded><![CDATA[<p>I have been watching for the TableKit Callback tutorial. I have been using the tablekit, but can not seem to get Ajax.Updater to accept and load changes to the table. I loose the sort features when I use the updater. Any ideas? I have a feeling I am updating the table incorrectly. If I use Insertion to add rows to the table, they are not sortable. So I am almost sure it is a init issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barak Hecht</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-673</link>
		<dc:creator>Barak Hecht</dc:creator>
		<pubDate>Tue, 10 Jul 2007 09:24:48 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-673</guid>
		<description>cool, thanks</description>
		<content:encoded><![CDATA[<p>cool, thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vlad</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-672</link>
		<dc:creator>Vlad</dc:creator>
		<pubDate>Tue, 10 Jul 2007 07:06:36 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-672</guid>
		<description>I&#039;ve sent you an email. IE6 works ok (I&#039;ve tested against the demo on this site), it&#039;s just a bit picky about where you grab the column from.

LATER EDIT: I&#039;ve seen your older comments, they were marked as spam (probably you had JS disabled when you posted). I&#039;ll clean the code up an post a demo.
</description>
		<content:encoded><![CDATA[<p>I&#8217;ve sent you an email. IE6 works ok (I&#8217;ve tested against the demo on this site), it&#8217;s just a bit picky about where you grab the column from.</p>
<p>LATER EDIT: I&#8217;ve seen your older comments, they were marked as spam (probably you had JS disabled when you posted). I&#8217;ll clean the code up an post a demo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barak Hecht</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-671</link>
		<dc:creator>Barak Hecht</dc:creator>
		<pubDate>Tue, 10 Jul 2007 06:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-671</guid>
		<description>i will be glad to post it to this site, so if u can give me ur email address, ill send it over</description>
		<content:encoded><![CDATA[<p>i will be glad to post it to this site, so if u can give me ur email address, ill send it over</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vlad</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-670</link>
		<dc:creator>Vlad</dc:creator>
		<pubDate>Tue, 10 Jul 2007 05:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-670</guid>
		<description>You can submit your modification to the &lt;a href=&quot;http://groups.google.com/group/dexagogo&quot; rel=&quot;nofollow&quot;&gt;Dexagogo Google Group&lt;/a&gt; or, if you&#039;d like, I can host it here along with a demo. 

As for IE6 I&#039;ll have to look into this matter.</description>
		<content:encoded><![CDATA[<p>You can submit your modification to the <a href="http://groups.google.com/group/dexagogo" rel="nofollow">Dexagogo Google Group</a> or, if you&#8217;d like, I can host it here along with a demo. </p>
<p>As for IE6 I&#8217;ll have to look into this matter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barak Hecht</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-668</link>
		<dc:creator>Barak Hecht</dc:creator>
		<pubDate>Mon, 09 Jul 2007 20:05:19 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-668</guid>
		<description>Is there a reason why in IE6 I cant get the tablekit-trueresize.js to work?
 I added an alert(&#039;hi&#039;) at the begging of the resize function and it is not called.

The same with the script I just wrote. It is only called when I write the code inside tablekit.js 
(although in firefox, it is called also if I use the &quot;extenssion&quot; javascript file)?.

any thoughts?</description>
		<content:encoded><![CDATA[<p>Is there a reason why in IE6 I cant get the tablekit-trueresize.js to work?<br />
 I added an alert(&#8216;hi&#8217;) at the begging of the resize function and it is not called.</p>
<p>The same with the script I just wrote. It is only called when I write the code inside tablekit.js<br />
(although in firefox, it is called also if I use the &#8220;extenssion&#8221; javascript file)?.</p>
<p>any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barak Hecht</title>
		<link>http://vlad.bailescu.ro/javascript/tablekit/comment-page-1/#comment-667</link>
		<dc:creator>Barak Hecht</dc:creator>
		<pubDate>Mon, 09 Jul 2007 20:04:36 +0000</pubDate>
		<guid isPermaLink="false">http://vlad.bailescu.ro/javascript/htmlkit/#comment-667</guid>
		<description>Hi Vlad and all.
I wrote my tablekit-keepwidth.js, and I want to share it with you all.
Where can I upload it to?</description>
		<content:encoded><![CDATA[<p>Hi Vlad and all.<br />
I wrote my tablekit-keepwidth.js, and I want to share it with you all.<br />
Where can I upload it to?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
