Sha256: 7d005456bddedb33fa13f4f34fdb49d00925a4d6bd0ca3bb782f4f8dd2c79677
Contents?: true
Size: 880 Bytes
Versions: 160
Compression:
Stored size: 880 Bytes
Contents
module ActionView module Helpers module Tags # :nodoc: class CollectionSelect < Base #:nodoc: def initialize(object_name, method_name, template_object, collection, value_method, text_method, options, html_options) @collection = collection @value_method = value_method @text_method = text_method @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] } select_content_tag( options_from_collection_for_select(@collection, @value_method, @text_method, option_tags_options), @options, @html_options ) end end end end end
Version data entries
160 entries across 155 versions & 13 rubygems