aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJared Giles <jared@aleph-one.net>2010-04-15 17:04:00 -0500
committerJared Giles <jared@aleph-one.net>2010-04-15 17:04:00 -0500
commit9cf65af881cb40a83782f34fe0cbf9993e54e209 (patch)
tree59070f04cf22abf3e1ac9b70a8ef05532383a99b /railties
parent43d03c3a1cf49cad306826bd7d2c404f016282d3 (diff)
downloadrails-9cf65af881cb40a83782f34fe0cbf9993e54e209.tar.gz
rails-9cf65af881cb40a83782f34fe0cbf9993e54e209.tar.bz2
rails-9cf65af881cb40a83782f34fe0cbf9993e54e209.zip
Added a note in the section on complex forms regarding nested attributes in 2.3
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/form_helpers.textile1
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/guides/source/form_helpers.textile b/railties/guides/source/form_helpers.textile
index 050486a5a4..70b88db3a4 100644
--- a/railties/guides/source/form_helpers.textile
+++ b/railties/guides/source/form_helpers.textile
@@ -752,6 +752,7 @@ h3. Building Complex Forms
Many apps grow beyond simple forms editing a single object. For example when creating a Person you might want to allow the user to (on the same form) create multiple address records (home, work, etc.). When later editing that person the user should be able to add, remove or amend addresses as necessary. While this guide has shown you all the pieces necessary to handle this, Rails does not yet have a standard end-to-end way of accomplishing this, but many have come up with viable approaches. These include:
+* As of Rails 2.3, Rails includes "Nested Attributes":./2_3_release_notes.html#nested-attributes and "Nested Object Forms":./2_3_release_notes.html#nested-object-forms
* Ryan Bates' series of Railscasts on "complex forms":http://railscasts.com/episodes/75
* Handle Multiple Models in One Form from "Advanced Rails Recipes":http://media.pragprog.com/titles/fr_arr/multiple_models_one_form.pdf
* Eloy Duran's "complex-forms-examples":http://github.com/alloy/complex-form-examples/ application