aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-11-27 08:38:08 +0100
committerYves Senn <yves.senn@gmail.com>2014-11-27 08:39:07 +0100
commitb2351beae58b3ff8fe7d94c6d6d2d6794f015c64 (patch)
tree29c0c922f4bb6f66fb31b1c116f8107fe48229f1
parent37b1de18841adac1fb4940069389da628a835649 (diff)
parentb4b6c556a7135f490720b55a916126ee88e326a6 (diff)
downloadrails-b2351beae58b3ff8fe7d94c6d6d2d6794f015c64.tar.gz
rails-b2351beae58b3ff8fe7d94c6d6d2d6794f015c64.tar.bz2
rails-b2351beae58b3ff8fe7d94c6d6d2d6794f015c64.zip
Merge pull request #17796 from leafac/fix-format
Fix format "Form Helpers" guide
-rw-r--r--guides/source/form_helpers.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md
index cb45e38614..f3f7415b3c 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -96,7 +96,15 @@ form_tag({controller: "people", action: "search"}, method: "get", class: "nifty_
### Helpers for Generating Form Elements
-Rails provides a series of helpers for generating form elements such as checkboxes, text fields, and radio buttons. These basic helpers, with names ending in "_tag" (such as `text_field_tag` and `check_box_tag`), generate just a single `<input>` element. The first parameter to these is always the name of the input. When the form is submitted, the name will be passed along with the form data, and will make its way to the `params` hash in the controller with the value entered by the user for that field. For example, if the form contains `<%= text_field_tag(:query) %>`, then you would be able to get the value of this field in the controller with `params[:query]`.
+Rails provides a series of helpers for generating form elements such as
+checkboxes, text fields, and radio buttons. These basic helpers, with names
+ending in `_tag` (such as `text_field_tag` and `check_box_tag`), generate just a
+single `<input>` element. The first parameter to these is always the name of the
+input. When the form is submitted, the name will be passed along with the form
+data, and will make its way to the `params` hash in the controller with the
+value entered by the user for that field. For example, if the form contains `<%=
+text_field_tag(:query) %>`, then you would be able to get the value of this
+field in the controller with `params[:query]`.
When naming inputs, Rails uses certain conventions that make it possible to submit parameters with non-scalar values such as arrays or hashes, which will also be accessible in `params`. You can read more about them in [chapter 7 of this guide](#understanding-parameter-naming-conventions). For details on the precise usage of these helpers, please refer to the [API documentation](http://api.rubyonrails.org/classes/ActionView/Helpers/FormTagHelper.html).