<?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: On the NEW Ajax Scaffold Generator</title>
	<atom:link href="http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/feed/" rel="self" type="application/rss+xml" />
	<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 11 Mar 2010 23:57:08 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jason, bronzeiii@yahoo.com</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-33</link>
		<dc:creator>Jason, bronzeiii@yahoo.com</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-33</guid>
		<description>Hi,

It&#039;s a great tool you&#039;ve created.  However, after I set it up, when I click on &quot;Create&quot;, the box does not display as it did in the demo page.  I followed all the procedures provided above.  The database i used is MYSQL.  but i dont think that&#039;s the reason that caused it.  Please let me know what you think.

P.S i tried on both firefox 1.5 and I.E 6

Thank you</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>It&#8217;s a great tool you&#8217;ve created.  However, after I set it up, when I click on &#8220;Create&#8221;, the box does not display as it did in the demo page.  I followed all the procedures provided above.  The database i used is MYSQL.  but i dont think that&#8217;s the reason that caused it.  Please let me know what you think.</p>
<p>P.S i tried on both firefox 1.5 and I.E 6</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason, bronzeiii@yahoo.com</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-34</link>
		<dc:creator>Jason, bronzeiii@yahoo.com</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-34</guid>
		<description>nevermind, it was a caching problem.  shift+reload fixed it.  Thank you!</description>
		<content:encoded><![CDATA[<p>nevermind, it was a caching problem.  shift+reload fixed it.  Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Raymond</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-35</link>
		<dc:creator>Scott Raymond</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-35</guid>
		<description>Man, if that workaround for doing IE-safe insertions on tables is your creation, it *really* deserves to be part of Prototype proper. I&#039;d love to see that as a patch!

Great work.</description>
		<content:encoded><![CDATA[<p>Man, if that workaround for doing IE-safe insertions on tables is your creation, it *really* deserves to be part of Prototype proper. I&#8217;d love to see that as a patch!</p>
<p>Great work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard White</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-36</link>
		<dc:creator>Richard White</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-36</guid>
		<description>Thanks for the kind words Scott. And yes, that code is actually my own work. I plan to document it in a later blog post and probably should submit it to prototype, I&#039;ll look into that.</description>
		<content:encoded><![CDATA[<p>Thanks for the kind words Scott. And yes, that code is actually my own work. I plan to document it in a later blog post and probably should submit it to prototype, I&#8217;ll look into that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex MacCaw</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-37</link>
		<dc:creator>Alex MacCaw</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-37</guid>
		<description>As Rich outlined above, one of the few caveats to his scaffolding is that it only generates properly when both element names are the same, as in: &#039;script/generate ajax_scaffold Page Page&#039; rather than &#039;script/generate ajax_scaffold Page Admin&#039;. However this can be sorted b y changing two things:
1) Edit the index.rhtml (which in this example will be in the admin view). It calls on a controller of &#039;page&#039; which doesn&#039;t exist. Change this to call on a controller of &#039;admin&#039;.
2) Rename the partial, which in this case will be called &#039;_admin.rhtml&#039; to &#039;_page.rhtml&#039;.
Than everything should work fine!
Great thanks to Rich for the hard work he&#039;s put into it, it&#039;s pretty amazing.</description>
		<content:encoded><![CDATA[<p>As Rich outlined above, one of the few caveats to his scaffolding is that it only generates properly when both element names are the same, as in: &#8217;script/generate ajax_scaffold Page Page&#8217; rather than &#8217;script/generate ajax_scaffold Page Admin&#8217;. However this can be sorted b y changing two things:<br />
1) Edit the index.rhtml (which in this example will be in the admin view). It calls on a controller of &#8216;page&#8217; which doesn&#8217;t exist. Change this to call on a controller of &#8216;admin&#8217;.<br />
2) Rename the partial, which in this case will be called &#8216;_admin.rhtml&#8217; to &#8216;_page.rhtml&#8217;.<br />
Than everything should work fine!<br />
Great thanks to Rich for the hard work he&#8217;s put into it, it&#8217;s pretty amazing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-38</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-38</guid>
		<description>Hi,

I managed to implement your code and it works perfectly but is it possible to use the &#039;render partial&#039; call  in another page? The edit and delete seems to work but the create dosn&#039;t.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I managed to implement your code and it works perfectly but is it possible to use the &#8216;render partial&#8217; call  in another page? The edit and delete seems to work but the create dosn&#8217;t.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard White</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-39</link>
		<dc:creator>Richard White</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-39</guid>
		<description>Steven: I&#039;m not sure what you mean, what are you trying to render on another page? You can obviously include the whole scaffold in another page using the render_component, but are you trying to render just one of the forms by themselves?</description>
		<content:encoded><![CDATA[<p>Steven: I&#8217;m not sure what you mean, what are you trying to render on another page? You can obviously include the whole scaffold in another page using the render_component, but are you trying to render just one of the forms by themselves?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: court3nay</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-40</link>
		<dc:creator>court3nay</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-40</guid>
		<description>I&#039;ve posted a ton of sorting and filtering code for your rails scaffolds.  It wouldn&#039;t be too hard to convert this to ajax to re-fill the table at will; feel free to adapt at will.  Great article!

http://blog.caboo.se/articles/2006/02/02/more-cracked-out-scaffolding-element-twisty</description>
		<content:encoded><![CDATA[<p>I&#8217;ve posted a ton of sorting and filtering code for your rails scaffolds.  It wouldn&#8217;t be too hard to convert this to ajax to re-fill the table at will; feel free to adapt at will.  Great article!</p>
<p><a href="http://blog.caboo.se/articles/2006/02/02/more-cracked-out-scaffolding-element-twisty" rel="nofollow">http://blog.caboo.se/articles/2006/02/02/more-cracked-out-scaffolding-element-twisty</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-41</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-41</guid>
		<description>Thanks Richard, I&#039;m trying to render the entire thing on another page using the render_component but the create button dosnt seem to work but the edit and delete does. I get no errors.</description>
		<content:encoded><![CDATA[<p>Thanks Richard, I&#8217;m trying to render the entire thing on another page using the render_component but the create button dosnt seem to work but the edit and delete does. I get no errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PatrickH</title>
		<link>http://height1percent.com/2006/02/21/on-the-new-ajax-scaffold-generator/#comment-42</link>
		<dc:creator>PatrickH</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">urn:uuid:{a.guid}#comment-42</guid>
		<description>I&#039;ve been having a problem with the demo page. There seems to be some sort of bug.

I&#039;m using Safari on 10.4.

Everytime I click &quot;Edit&quot; on the last item in the table it crashes the broswer. The other items work fine.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been having a problem with the demo page. There seems to be some sort of bug.</p>
<p>I&#8217;m using Safari on 10.4.</p>
<p>Everytime I click &#8220;Edit&#8221; on the last item in the table it crashes the broswer. The other items work fine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
