Flowdock
method

datetime_selector

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: DateHelperInstanceTag

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

These similar methods exist in v6.1.7.7:

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 1002
        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.