Skip to content

Commit

Permalink
removed etc. not require
Browse files Browse the repository at this point in the history
  • Loading branch information
rajinder-yadav authored and fxn committed Nov 15, 2010
1 parent bad920f commit 41e5e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion railties/guides/source/form_helpers.textile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,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 +&lt;input&gt;+ 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 +&lt;input&gt;+ 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) %>
Expand Down

0 comments on commit 41e5e4a

Please sign in to comment.