<?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: Dynamic Nested Forms in Rails 2.3+ Using RJS</title>
	<atom:link href="http://www.gotripod.com/2009/09/30/dynamic-nested-forms-in-rails-2-3-using-rjs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gotripod.com/2009/09/30/dynamic-nested-forms-in-rails-2-3-using-rjs/</link>
	<description>We design &#38; build outstanding websites, desktop and mobile software applications</description>
	<lastBuildDate>Tue, 08 Nov 2011 22:37:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jon</title>
		<link>http://www.gotripod.com/2009/09/30/dynamic-nested-forms-in-rails-2-3-using-rjs/comment-page-1/#comment-1285</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Thu, 19 Nov 2009 09:13:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.gotripod.com/2009/09/30/dynamic-nested-forms-in-rails-2-3-using-rjs/#comment-1285</guid>
		<description>@Joe I can&#039;t see what line you have added in the comment. I have not heard of any incompatibilities with Formtstic but have not personally tried it. The error is suggesting you have a syntax error in terms of a missing closing bracket but thet is all I can work out from this.</description>
		<content:encoded><![CDATA[<p>@Joe I can&#8217;t see what line you have added in the comment. I have not heard of any incompatibilities with Formtstic but have not personally tried it. The error is suggesting you have a syntax error in terms of a missing closing bracket but thet is all I can work out from this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe McGlynn</title>
		<link>http://www.gotripod.com/2009/09/30/dynamic-nested-forms-in-rails-2-3-using-rjs/comment-page-1/#comment-1281</link>
		<dc:creator>Joe McGlynn</dc:creator>
		<pubDate>Wed, 18 Nov 2009 18:47:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.gotripod.com/2009/09/30/dynamic-nested-forms-in-rails-2-3-using-rjs/#comment-1281</guid>
		<description>I&#039;m not having any luck with this, I get a &quot;compile error&quot;.

I&#039;ve added this line to my form:

  # form is the enclosing form_builder (I&#039;m using semantic_form_for, but it&#039;s just an extension of form_for)
  # :agenda_items is the name of the has_many attributes on the parent model (a meeting has_many agenda_items)
  # &#039;agenda_item&#039; is the id of the dom element (a div) within which I want to add the new records

The error I get is:

compile error
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:18: syntax error, unexpected kEND, expecting &#039;)&#039;
@output_buffer.concat &quot;  &quot;;  end ; @output_buffer.concat &quot;\n&quot;
                                ^
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:20: syntax error, unexpected kENSURE, expecting &#039;)&#039;
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:22: syntax error, unexpected kEND, expecting &#039;)&#039;

Extracted source (around line #18):

15:
16:
17:      &quot;Create Meeting&quot; %&gt;
18:
19:


which causes this error:

compile error
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:18: syntax error, unexpected kEND, expecting &#039;)&#039;
@output_buffer.concat &quot;  &quot;;  end ; @output_buffer.concat &quot;\n&quot;
                                ^
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:20: syntax error, unexpected kENSURE, expecting &#039;)&#039;
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:22: syntax error, unexpected kEND, expecting &#039;)&#039;

Extracted source (around line #18):

15:
16:
17:      &quot;Create Meeting&quot; %&gt;
18:
19:</description>
		<content:encoded><![CDATA[<p>I&#8217;m not having any luck with this, I get a &#8220;compile error&#8221;.</p>
<p>I&#8217;ve added this line to my form:</p>
<p>  # form is the enclosing form_builder (I&#8217;m using semantic_form_for, but it&#8217;s just an extension of form_for)<br />
  # :agenda_items is the name of the has_many attributes on the parent model (a meeting has_many agenda_items)<br />
  # &#8216;agenda_item&#8217; is the id of the dom element (a div) within which I want to add the new records</p>
<p>The error I get is:</p>
<p>compile error<br />
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:18: syntax error, unexpected kEND, expecting &#8216;)&#8217;<br />
@output_buffer.concat &#8221;  &#8220;;  end ; @output_buffer.concat &#8220;\n&#8221;<br />
                                ^<br />
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:20: syntax error, unexpected kENSURE, expecting &#8216;)&#8217;<br />
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:22: syntax error, unexpected kEND, expecting &#8216;)&#8217;</p>
<p>Extracted source (around line #18):</p>
<p>15:<br />
16:<br />
17:      &#8220;Create Meeting&#8221; %&gt;<br />
18:<br />
19:</p>
<p>which causes this error:</p>
<p>compile error<br />
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:18: syntax error, unexpected kEND, expecting &#8216;)&#8217;<br />
@output_buffer.concat &#8221;  &#8220;;  end ; @output_buffer.concat &#8220;\n&#8221;<br />
                                ^<br />
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:20: syntax error, unexpected kENSURE, expecting &#8216;)&#8217;<br />
C:/workspace2/MeetingAdjourned/app/views/meetings/new.html.erb:22: syntax error, unexpected kEND, expecting &#8216;)&#8217;</p>
<p>Extracted source (around line #18):</p>
<p>15:<br />
16:<br />
17:      &#8220;Create Meeting&#8221; %&gt;<br />
18:<br />
19:</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- Quick Cache: failed to write cache. The cache/ directory is either non-existent ( and could not be created ) or it is not writable. -->
