Flowdock
method

datetime_selector

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActionView::Helpers::InstanceTag
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 932
        def datetime_selector(options, html_options)
          datetime = value(object) || default_datetime(options)

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

          DateTimeSelector.new(datetime, options.merge(:tag => true), html_options)
        end
Register or log in to add new notes.