method
select_second
v3.0.9 -
Show latest stable
-
0 notes -
Class: ActionView::Helpers::DateHelper
- 1.0.0 (0)
- 1.1.6 (0)
- 1.2.6 (0)
- 2.0.3 (38)
- 2.1.0 (0)
- 2.2.1 (0)
- 2.3.8 (13)
- 3.0.0 (0)
- 3.0.9 (-3)
- 3.1.0 (3)
- 3.2.1 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- 4.0.2 (-2)
- 4.1.8 (0)
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (0)
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (0)
- 7.1.3.4 (0)
- 7.2.3 (0)
- 8.0.0 (0)
- 8.1.1 (0)
- What's this?
select_second(datetime, options = {}, html_options = {})
public
Returns a select tag with options for each of the seconds 0 through 59 with the current second selected. The second can also be substituted for a second number. Override the field name using the :field_name option, ‘second’ by default.
Examples
my_time = Time.now + 16.minutes # Generates a select field for seconds that defaults to the seconds for the time in my_time select_second(my_time) # Generates a select field for seconds that defaults to the number given select_second(33) # Generates a select field for seconds that defaults to the seconds for the time in my_time # that is named 'interval' rather than 'second' select_second(my_time, :field_name => 'interval') # Generates a select field for seconds with a custom prompt. Use :prompt=>true for a # generic prompt. select_minute(14, :prompt => 'Choose seconds')

