aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/source/form_helpers.txt
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2009-01-01 20:30:59 +0000
committerFrederick Cheung <frederick.cheung@gmail.com>2009-01-01 20:30:59 +0000
commitccae605bcae3d18e54f2c122a13e2088a8dc1b6e (patch)
tree61ac24f6d52036d26e46b67aa11bc3ef89b3b4f8 /railties/doc/guides/source/form_helpers.txt
parent527ee9b079722a204641d410c38017f1d7d3b7c0 (diff)
downloadrails-ccae605bcae3d18e54f2c122a13e2088a8dc1b6e.tar.gz
rails-ccae605bcae3d18e54f2c122a13e2088a8dc1b6e.tar.bz2
rails-ccae605bcae3d18e54f2c122a13e2088a8dc1b6e.zip
Mention another complex forms plugin
Diffstat (limited to 'railties/doc/guides/source/form_helpers.txt')
-rw-r--r--railties/doc/guides/source/form_helpers.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/railties/doc/guides/source/form_helpers.txt b/railties/doc/guides/source/form_helpers.txt
index d4d88b695e..3880458e9d 100644
--- a/railties/doc/guides/source/form_helpers.txt
+++ b/railties/doc/guides/source/form_helpers.txt
@@ -730,9 +730,10 @@ Complex forms
Many apps grow beyond simple forms editing a single object. For example when creating a Person instance 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:
* Ryan Bates' series of railscasts on http://railscasts.com/episodes/75[complex forms]
-* Handle Multiple Models in One Form from http://media.pragprog.com/titles/fr_arr/multiple_models_one_form.pdf[Advanced Rails Recipes].
+* Handle Multiple Models in One Form from http://media.pragprog.com/titles/fr_arr/multiple_models_one_form.pdf[Advanced Rails Recipes]
* Eloy Duran's http://github.com/alloy/complex-form-examples/tree/alloy-nested_params[nested_params] plugin
-* Lance Ivy's http://github.com/cainlevy/nested_assignment/tree/master[nested_assignment] plugin and http://github.com/cainlevy/complex-form-examples/tree/cainlevy[sample application].
+* Lance Ivy's http://github.com/cainlevy/nested_assignment/tree/master[nested_assignment] plugin and http://github.com/cainlevy/complex-form-examples/tree/cainlevy[sample application]
+* James Golick's http://github.com/giraffesoft/attribute_fu/tree[attribute_fu] plugin
== Changelog ==