diff options
author | Rajinder Yadav <devguy.ca@gmail.com> | 2010-11-08 04:04:18 -0500 |
---|---|---|
committer | Rajinder Yadav <devguy.ca@gmail.com> | 2010-11-08 04:04:18 -0500 |
commit | 149f795d168897d36ce07a243b3e83ba724752ab (patch) | |
tree | bb83077e2c914e8d0b7e7295d25268fb0ab523ef /railties/guides/source | |
parent | e135f13f50319fdce660627972089d49363029ca (diff) | |
download | rails-149f795d168897d36ce07a243b3e83ba724752ab.tar.gz rails-149f795d168897d36ce07a243b3e83ba724752ab.tar.bz2 rails-149f795d168897d36ce07a243b3e83ba724752ab.zip |
removed etc. not require
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/form_helpers.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/form_helpers.textile b/railties/guides/source/form_helpers.textile index b38b134b61..16aad5aa9e 100644 --- a/railties/guides/source/form_helpers.textile +++ b/railties/guides/source/form_helpers.textile @@ -107,7 +107,7 @@ WARNING: Do not delimit the second hash without doing so with the first hash, ot h4. Helpers for Generating Form Elements -Rails provides a series of helpers for generating form elements such as checkboxes, text fields, radio buttons, and so on. These basic helpers, with names ending in <notextile>_tag</notextile> such as +text_field_tag+, +check_box_tag+, etc., generate just a single +<input>+ element. The first parameter to these is always the name of the input. In the controller this name will be the key in the +params+ hash used to get the value entered by the user. For example, if the form contains +Rails provides a series of helpers for generating form elements such as checkboxes, text fields, radio buttons, and so on. These basic helpers, with names ending in <notextile>_tag</notextile> such as +text_field_tag+, +check_box_tag+, generate just a single +<input>+ element. The first parameter to these is always the name of the input. In the controller this name will be the key in the +params+ hash used to get the value entered by the user. For example, if the form contains <erb> <%= text_field_tag(:query) %> |