<?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 The unexpected is what changes our lives.</title>
	<atom:link href="http://tobias.baethge.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://tobias.baethge.com</link>
	<description>Website of Tobias Bäthge.</description>
	<lastBuildDate>Thu, 29 Jul 2010 02:47:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on Happy Birthday WP-Table Reloaded! by yoavadler</title>
		<link>http://tobias.baethge.com/2010/04/happy-birthday-wp-table-reloaded/comment-page-1/#comment-3104</link>
		<dc:creator>yoavadler</dc:creator>
		<pubDate>Thu, 29 Jul 2010 02:47:40 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=900#comment-3104</guid>
		<description>Hi Tobias,
Great plugin, and I am starting to use it. One question which may not be related: In your explanation page of the plugin, you are using a &quot;expand/collapse&quot; feature. Which plugin is it?
Thanks,
Yoav</description>
		<content:encoded><![CDATA[<p>Hi Tobias,<br />
Great plugin, and I am starting to use it. One question which may not be related: In your explanation page of the plugin, you are using a &#8220;expand/collapse&#8221; feature. Which plugin is it?<br />
Thanks,<br />
Yoav</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 5: How to use PHP in table cells by Tobias</title>
		<link>http://tobias.baethge.com/2010/02/extension-5-how-to-use-php-in-table-cells/comment-page-1/#comment-3100</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Sat, 24 Jul 2010 18:35:26 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=829#comment-3100</guid>
		<description>Hi Jeremy,

you need to use full PHP code, like:
&lt;pre lang=&quot;php&quot;&gt;

&lt;/pre&gt;

(Maybe you did, I can&#039;t tell, because WordPress stripped your first code snippet.)
If you did actually type that, it is possible that your server prevents text fields from having that content. If that is the case, you might try importing a pre-filled table.

Regards,
Tobias</description>
		<content:encoded><![CDATA[<p>Hi Jeremy,</p>
<p>you need to use full PHP code, like:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></div></div>

<p>(Maybe you did, I can&#8217;t tell, because WordPress stripped your first code snippet.)<br />
If you did actually type that, it is possible that your server prevents text fields from having that content. If that is the case, you might try importing a pre-filled table.</p>
<p>Regards,<br />
Tobias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 7: Textfield widths on the &#8220;Edit&#8221; page by Tobias</title>
		<link>http://tobias.baethge.com/2010/03/extension-7-textfield-widths-on-the-edit-page/comment-page-1/#comment-3099</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Sat, 24 Jul 2010 18:32:09 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=844#comment-3099</guid>
		<description>Hi Tim,

while there is no theoretical limit on the number of rows, I had to learn that there is one in practice: For each table cell, a text input field is shown on the table&#039;s &quot;Edit&quot; screen. The more rows you have, the more text fields are necessary. Now, as it has happened, many such text fields will slow down a web browser significantly, making it hard to work on a table&#039;s data.

Therefore, if you have the chance to use a SQL solution, I would recommend that for large tables. You can then still include all of the frontend features that the plugin offers, simply by manually using the JavaScript libraries.

Best wishes,
Tobias</description>
		<content:encoded><![CDATA[<p>Hi Tim,</p>
<p>while there is no theoretical limit on the number of rows, I had to learn that there is one in practice: For each table cell, a text input field is shown on the table&#8217;s &#8220;Edit&#8221; screen. The more rows you have, the more text fields are necessary. Now, as it has happened, many such text fields will slow down a web browser significantly, making it hard to work on a table&#8217;s data.</p>
<p>Therefore, if you have the chance to use a SQL solution, I would recommend that for large tables. You can then still include all of the frontend features that the plugin offers, simply by manually using the JavaScript libraries.</p>
<p>Best wishes,<br />
Tobias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 5: How to use PHP in table cells by Jeremy Tews</title>
		<link>http://tobias.baethge.com/2010/02/extension-5-how-to-use-php-in-table-cells/comment-page-1/#comment-3098</link>
		<dc:creator>Jeremy Tews</dc:creator>
		<pubDate>Fri, 23 Jul 2010 16:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=829#comment-3098</guid>
		<description>I went ahead and created the extension plugin via your instructions. I then activated it via the admin menu. 

Then, I put the following php code
[stripped]

into a cell to pull a custom field out of a post and all it did was print this in the cell box:
&lt;pre lang=&quot;php&quot;&gt;
echo get(&#039;ProjectTitle&#039;); ?&gt;
&lt;/pre&gt;

Did I miss something here or screw it up? Any thoughts?

My overall goal is to have a table on a page that will pull in the custom fields out of posts (using flutter to create custom fields in the admin part of the post). You then could click on that project (a link) to go to the actual post which would give more information on the project. 

Does that make sense? Any thoughts or help in pointing me in the right direction?

Thanks in advance. Love the plugin by the way. Very useful.</description>
		<content:encoded><![CDATA[<p>I went ahead and created the extension plugin via your instructions. I then activated it via the admin menu. </p>
<p>Then, I put the following php code<br />
[stripped]</p>
<p>into a cell to pull a custom field out of a post and all it did was print this in the cell box:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> get<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ProjectTitle'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Did I miss something here or screw it up? Any thoughts?</p>
<p>My overall goal is to have a table on a page that will pull in the custom fields out of posts (using flutter to create custom fields in the admin part of the post). You then could click on that project (a link) to go to the actual post which would give more information on the project. </p>
<p>Does that make sense? Any thoughts or help in pointing me in the right direction?</p>
<p>Thanks in advance. Love the plugin by the way. Very useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 7: Textfield widths on the &#8220;Edit&#8221; page by Tim</title>
		<link>http://tobias.baethge.com/2010/03/extension-7-textfield-widths-on-the-edit-page/comment-page-1/#comment-3097</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 23 Jul 2010 15:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=844#comment-3097</guid>
		<description>Hi,

Great plugin. I&#039;m debating whether to use it for a rather large table (700 rows or so). The alternative is to develop an SQL database for this project (which I&#039;m not too skilled at). Are there any practical limits/considerations to how large a table can be for this plugin?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Great plugin. I&#8217;m debating whether to use it for a rather large table (700 rows or so). The alternative is to develop an SQL database for this project (which I&#8217;m not too skilled at). Are there any practical limits/considerations to how large a table can be for this plugin?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 7: Textfield widths on the &#8220;Edit&#8221; page by Chris</title>
		<link>http://tobias.baethge.com/2010/03/extension-7-textfield-widths-on-the-edit-page/comment-page-1/#comment-3095</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 22 Jul 2010 12:38:17 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=844#comment-3095</guid>
		<description>Hi,

I&#039;m just getting into your plugin and its looking really good. Question for you: When I import a file from Excel instead of getting the table, I just get garbage. I know I&#039;m missing something pretty here, but what?

P.S.: It works great, when I cut and paste the same Excel table into the blank form (manual method).

Thanks all.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m just getting into your plugin and its looking really good. Question for you: When I import a file from Excel instead of getting the table, I just get garbage. I know I&#8217;m missing something pretty here, but what?</p>
<p>P.S.: It works great, when I cut and paste the same Excel table into the blank form (manual method).</p>
<p>Thanks all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 7: Textfield widths on the &#8220;Edit&#8221; page by Tobias</title>
		<link>http://tobias.baethge.com/2010/03/extension-7-textfield-widths-on-the-edit-page/comment-page-1/#comment-3096</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Thu, 22 Jul 2010 11:01:13 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=844#comment-3096</guid>
		<description>Hi Chris,

this very likely happens because the Excel file is in some other &quot;character encoding&quot;, which messes up the import library. When you use the manual method, that character encoding is changed/neglected, and therefore the import works.
Unfortunately I don&#039;t have a solution to that, so I can only recommend to keep using the manual method for importing files.

Best wishes,
Tobias</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>this very likely happens because the Excel file is in some other &#8220;character encoding&#8221;, which messes up the import library. When you use the manual method, that character encoding is changed/neglected, and therefore the import works.<br />
Unfortunately I don&#8217;t have a solution to that, so I can only recommend to keep using the manual method for importing files.</p>
<p>Best wishes,<br />
Tobias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 7: Textfield widths on the &#8220;Edit&#8221; page by Jeff</title>
		<link>http://tobias.baethge.com/2010/03/extension-7-textfield-widths-on-the-edit-page/comment-page-1/#comment-3093</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Wed, 21 Jul 2010 04:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=844#comment-3093</guid>
		<description>Thank you for the plugin... exactly what I was looking for!</description>
		<content:encoded><![CDATA[<p>Thank you for the plugin&#8230; exactly what I was looking for!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 7: Textfield widths on the &#8220;Edit&#8221; page by Tobias</title>
		<link>http://tobias.baethge.com/2010/03/extension-7-textfield-widths-on-the-edit-page/comment-page-1/#comment-3092</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Fri, 16 Jul 2010 14:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=844#comment-3092</guid>
		<description>Hi,

you can do that with a WP-Table Reloaded Extension, see http://tobias.baethge.com/2010/02/extension-5-how-to-use-php-in-table-cells/.

Tobias</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>you can do that with a WP-Table Reloaded Extension, see <a href="http://tobias.baethge.com/2010/02/extension-5-how-to-use-php-in-table-cells/" rel="external">http://tobias.baethge.com/2010/02/extension-5-how-to-use-php-in-table-cells/</a>.</p>
<p>Tobias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension 7: Textfield widths on the &#8220;Edit&#8221; page by r3vv</title>
		<link>http://tobias.baethge.com/2010/03/extension-7-textfield-widths-on-the-edit-page/comment-page-1/#comment-3091</link>
		<dc:creator>r3vv</dc:creator>
		<pubDate>Fri, 16 Jul 2010 14:47:07 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=844#comment-3091</guid>
		<description>Hi Tobias,

Thanks for the plugin - it&#039;s great, however is there a way for me to embed some PHP cpde into a cell and have it executed at run time? When I try it seems to just show the straight output?

Regards</description>
		<content:encoded><![CDATA[<p>Hi Tobias,</p>
<p>Thanks for the plugin &#8211; it&#8217;s great, however is there a way for me to embed some PHP cpde into a cell and have it executed at run time? When I try it seems to just show the straight output?</p>
<p>Regards</p>
]]></content:encoded>
	</item>
</channel>
</rss>
