aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_view_overview.md
diff options
context:
space:
mode:
authorVishnu Atrai <me@vishnuatrai.com>2013-06-15 12:26:04 +0530
committerVishnu Atrai <me@vishnuatrai.com>2013-06-15 12:26:04 +0530
commit975080d1e1126d3489e603d89286150b321a9292 (patch)
tree1f847d77260b5e747692763d6e6cc457ec7ce30e /guides/source/action_view_overview.md
parent7ca82da6b0d467beed53f0501f6f3d8f9816787e (diff)
downloadrails-975080d1e1126d3489e603d89286150b321a9292.tar.gz
rails-975080d1e1126d3489e603d89286150b321a9292.tar.bz2
rails-975080d1e1126d3489e603d89286150b321a9292.zip
date_field docs for action view
Diffstat (limited to 'guides/source/action_view_overview.md')
-rw-r--r--guides/source/action_view_overview.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md
index dea1ddef71..57a157389d 100644
--- a/guides/source/action_view_overview.md
+++ b/guides/source/action_view_overview.md
@@ -1230,6 +1230,14 @@ Return select and option tags for the given object and method, using `time_zone_
time_zone_select( "user", "time_zone")
```
+#### date_field
+
+Returns an input tag of the "date" type tailored for accessing a specified attribute.
+
+```ruby
+date_field("user", "dob")
+```
+
### FormTagHelper
Provides a number of methods for creating form tags that doesn't rely on an Active Record object assigned to the template like FormHelper does. Instead, you provide the names and values manually.
@@ -1364,6 +1372,15 @@ text_field_tag 'name'
# => <input id="name" name="name" type="text" />
```
+#### date_field_tag
+
+Creates a standard input field of date type.
+
+```ruby
+date_field_tag "dob"
+# => <input id="dob" name="dob" type="date" />
+```
+
### JavaScriptHelper
Provides functionality for working with JavaScript in your views.