aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_tag_helper.rb
diff options
context:
space:
mode:
authorBen Mills <ben@unfiniti.com>2010-12-12 23:20:06 -0700
committerRyan Bigg <radarlistener@gmail.com>2010-12-13 16:25:17 +1000
commit73dafba6ca484e1772fea8cd25ad27ff65c6c66b (patch)
treee6ee7ca1c6bbd26dd7bf029023820f530d7e4974 /actionpack/lib/action_view/helpers/form_tag_helper.rb
parent0b5671ccca4a9f55379c913a211d669e241ad20c (diff)
downloadrails-73dafba6ca484e1772fea8cd25ad27ff65c6c66b.tar.gz
rails-73dafba6ca484e1772fea8cd25ad27ff65c6c66b.tar.bz2
rails-73dafba6ca484e1772fea8cd25ad27ff65c6c66b.zip
Added :placeholder option to ActionView::Helpers::FormTagHelper text_field_tag
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_tag_helper.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb
index 50f065f03d..c41271635d 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -112,6 +112,7 @@ module ActionView
# * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.
# * <tt>:size</tt> - The number of visible characters that will fit in the input.
# * <tt>:maxlength</tt> - The maximum number of characters that the browser will allow the user to enter.
+ # * <tt>:placeholder</tt> - The text contained in the field by default which is removed when the field receives focus.
# * Any other key creates standard HTML attributes for the tag.
#
# ==== Examples
@@ -121,6 +122,9 @@ module ActionView
# text_field_tag 'query', 'Enter your search query here'
# # => <input id="query" name="query" type="text" value="Enter your search query here" />
#
+ # text_field_tag 'search', nil, :placeholder => 'Enter search term...'
+ # # => <input id="search" name="search" placeholder="Enter search term..." type="text" />
+ #
# text_field_tag 'request', nil, :class => 'special_input'
# # => <input class="special_input" id="request" name="request" type="text" />
#