method
datetime_select
v2.1.0 -
Show latest stable
- Class:
ActionView::Helpers::DateHelper
datetime_select(object_name, method, options = {}, html_options = {})public
Returns a set of select tags (one for year, month, day, hour, and minute) pre-selected for accessing a specified datetime-based attribute (identified by method) on an object assigned to the template (identified by object). Examples:
If anything is passed in the html_options hash it will be applied to every select tag in the set.
Examples
# Generates a datetime select that, when POSTed, will be stored in the post variable in the written_on attribute datetime_select("post", "written_on") # Generates a datetime select with a year select that starts at 1995 that, when POSTed, will be stored in the # post variable in the written_on attribute. datetime_select("post", "written_on", :start_year => 1995) # Generates a datetime select with a default value of 3 days from the current time that, when POSTed, will be stored in the # trip variable in the departing attribute. datetime_select("trip", "departing", :default => 3.days.from_now) # Generates a datetime select that discards the type that, when POSTed, will be stored in the post variable as the written_on # attribute. datetime_select("post", "written_on", :discard_type => true)
The selects are prepared for multi-parameter assignment to an Active Record object.
3Notes
See #data_select for available options
Available symbols for "options" hash are described on date_select page
Separating date and time
Option :datetime_separator can be set too. Default is ' — '
Set hour and/or minutes
To set the hour and/or the minutes, you can use:
<%= f.datetime_select(:offer_end, :default => { :hour => 23, :minute => 59 }) %>