From 975080d1e1126d3489e603d89286150b321a9292 Mon Sep 17 00:00:00 2001 From: Vishnu Atrai Date: Sat, 15 Jun 2013 12:26:04 +0530 Subject: date_field docs for action view --- guides/source/action_view_overview.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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' # => ``` +#### date_field_tag + +Creates a standard input field of date type. + +```ruby +date_field_tag "dob" +# => +``` + ### JavaScriptHelper Provides functionality for working with JavaScript in your views. -- cgit v1.2.3