Sha256: 1a9ce1add5348cb05447e69db5f5a9ff29bfd86bbbcb9115d72c08b36bd2e911
Contents?: true
Size: 777 Bytes
Versions: 3
Compression:
Stored size: 777 Bytes
Contents
module Trestle class Form module Fields class TimeSelect < Field attr_reader :html_options def initialize(builder, template, name, options={}, html_options={}, &block) super(builder, template, name, options, &block) @html_options = default_html_options.merge(html_options) end def field content_tag(:div, class: "time-select") do builder.raw_time_select(name, options, html_options, &block) end 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(:time_select, Trestle::Form::Fields::TimeSelect)
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trestle-0.9.1 | lib/trestle/form/fields/time_select.rb |
trestle-0.9.0 | lib/trestle/form/fields/time_select.rb |
trestle-0.8.13 | lib/trestle/form/fields/time_select.rb |