Sha256: 95c8a4fb2cd716c980a15a7d8b65e31d8cc46e3843bed4b789ce2fdce049929f
Contents?: true
Size: 1.13 KB
Versions: 29
Compression:
Stored size: 1.13 KB
Contents
module ActionView module Helpers module Tags # :nodoc: class Select < Base # :nodoc: def initialize(object_name, method_name, template_object, choices, options, html_options) @choices = choices @choices = @choices.to_a if @choices.is_a?(Range) @html_options = html_options super(object_name, method_name, template_object, options) end def render option_tags_options = { :selected => @options.fetch(:selected) { value(@object) }, :disabled => @options[:disabled] } option_tags = if grouped_choices? grouped_options_for_select(@choices, option_tags_options) else options_for_select(@choices, option_tags_options) end select_content_tag(option_tags, @options, @html_options) end private # Grouped choices look like this: # # [nil, []] # { nil => [] } def grouped_choices? !@choices.empty? && @choices.first.respond_to?(:last) && Array === @choices.first.last end end end end end
Version data entries
29 entries across 29 versions & 2 rubygems