Sha256: d488e675f7890a7946a51ba2a4d90bb8a1be2a304371df60e19d62315b417ffc
Contents?: true
Size: 738 Bytes
Versions: 3
Compression:
Stored size: 738 Bytes
Contents
module Trestle class Form module Fields class DatetimeSelect < 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: "datetime-select") do builder.raw_datetime_select(name, options, html_options, &block) end end def default_html_options Trestle::Options.new(class: ["form-control"]) end end end end end Trestle::Form::Builder.register(:datetime_select, Trestle::Form::Fields::DatetimeSelect)
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trestle-0.8.3 | lib/trestle/form/fields/datetime_select.rb |
trestle-0.8.2 | lib/trestle/form/fields/datetime_select.rb |
trestle-0.8.0 | lib/trestle/form/fields/datetime_select.rb |