aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosiah Ivey <josiah.ivey@gmail.com>2010-05-25 08:03:04 -0500
committerMikel Lindsaar <raasdnil@gmail.com>2010-06-03 23:32:09 +1000
commit24ac08fd68a683c1c3904c430c738584a4944549 (patch)
treed311b3a8323b2e1f3bdce2495876e30328faf524
parente09e0a073bf7923c22dc0f87de1c284daff78cae (diff)
downloadrails-24ac08fd68a683c1c3904c430c738584a4944549.tar.gz
rails-24ac08fd68a683c1c3904c430c738584a4944549.tar.bz2
rails-24ac08fd68a683c1c3904c430c738584a4944549.zip
Form Helpers guide: Use new syntax for fields_for examples
-rw-r--r--railties/guides/source/form_helpers.textile8
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/guides/source/form_helpers.textile b/railties/guides/source/form_helpers.textile
index 0c0a4e2263..515b3aad39 100644
--- a/railties/guides/source/form_helpers.textile
+++ b/railties/guides/source/form_helpers.textile
@@ -255,7 +255,7 @@ You can create a similar binding without actually creating +&lt;form&gt;+ tags
<erb>
<%= form_for :person, @person, :url => { :action => "create" } do |person_form| %>
<%= person_form.text_field :name %>
- <% fields_for @person.contact_detail do |contact_details_form| %>
+ <%= fields_for @person.contact_detail do |contact_details_form| %>
<%= contact_details_form.text_field :phone_number %>
<% end %>
<% end %>
@@ -697,7 +697,7 @@ You might want to render a form with a set of edit fields for each of a person's
<%= form_for @person do |person_form| %>
<%= person_form.text_field :name %>
<% for address in @person.addresses %>
- <% person_form.fields_for address, :index => address do |address_form|%>
+ <%= person_form.fields_for address, :index => address do |address_form|%>
<%= address_form.text_field :city %>
<% end %>
<% end %>
@@ -725,7 +725,7 @@ Rails knows that all these inputs should be part of the person hash because you
To create more intricate nestings, you can specify the first part of the input name (+person[address]+ in the previous example) explicitly, for example
<erb>
-<% fields_for 'person[address][primary]', address, :index => address do |address_form| %>
+<%= fields_for 'person[address][primary]', address, :index => address do |address_form| %>
<%= address_form.text_field :city %>
<% end %>
</erb>
@@ -741,7 +741,7 @@ As a general rule the final input name is the concatenation of the name given to
As a shortcut you can append [] to the name and omit the +:index+ option. This is the same as specifying +:index => address+ so
<erb>
-<% fields_for 'person[address][primary][]', address do |address_form| %>
+<%= fields_for 'person[address][primary][]', address do |address_form| %>
<%= address_form.text_field :city %>
<% end %>
</erb>