Sha256: ab40188cc4212084eba5c46170178cd4bf53634147976c21927a5c0a5f721333
Contents?: true
Size: 963 Bytes
Versions: 43
Compression:
Stored size: 963 Bytes
Contents
# frozen_string_literal: true module ActionView module Helpers module Tags # :nodoc: class CollectionSelect < Base # :nodoc: include SelectRenderer include FormOptionsHelper 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 }, 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
43 entries across 43 versions & 6 rubygems