Sha256: 858036534df2d5f8d7d8eeef3cc307eb4e26694b7c29553798d71da587f91266
Contents?: true
Size: 919 Bytes
Versions: 3
Compression:
Stored size: 919 Bytes
Contents
module Trestle class Form module Fields class CollectionSelect < Field attr_reader :collection, :value_method, :text_method, :html_options def initialize(builder, template, name, collection, value_method, text_method, options={}, html_options={}) super(builder, template, name, options) @collection, @value_method, @text_method = collection, value_method, text_method @html_options = default_html_options.merge(html_options) end def field builder.raw_collection_select(name, collection, value_method, text_method, options, html_options) end def default_html_options Trestle::Options.new(class: ["form-control"], disabled: admin.readonly?, data: { enable_select2: true }) end end end end end Trestle::Form::Builder.register(:collection_select, Trestle::Form::Fields::CollectionSelect)
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trestle-0.9.1 | lib/trestle/form/fields/collection_select.rb |
trestle-0.9.0 | lib/trestle/form/fields/collection_select.rb |
trestle-0.8.13 | lib/trestle/form/fields/collection_select.rb |