Flowdock
method

datetime_selector

Importance_0
v3.2.8 - Show latest stable - 0 notes - Class: DateHelperInstanceTag
datetime_selector(options, html_options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/helpers/date_helper.rb, line 994
        def datetime_selector(options, html_options)
          datetime = value(object) || default_datetime(options)
          @auto_index ||= nil

          options = options.dup
          options[:field_name]           = @method_name
          options[:include_position]     = true
          options[:prefix]             ||= @object_name
          options[:index]                = @auto_index if @auto_index && !options.has_key?(:index)

          DateTimeSelector.new(datetime, options, html_options)
        end
Register or log in to add new notes.