Sha256: 564480bbc564a91c6d7f46bfa3fa7024259f8ab0a8a6104e66f44e15c518075a
Contents?: true
Size: 600 Bytes
Versions: 32
Compression:
Stored size: 600 Bytes
Contents
module ActiveAdmin module Inputs class DatepickerInput < ::Formtastic::Inputs::StringInput def input_html_options super.tap do |options| options[:class] = [options[:class], "datepicker"].compact.join(' ') options[:data] ||= {} options[:data].merge! datepicker_options end end private def datepicker_options options = self.options.fetch(:datepicker_options, {}) options = Hash[options.map{ |k, v| [k.to_s.camelcase(:lower), v] }] { datepicker_options: options } end end end end
Version data entries
32 entries across 32 versions & 6 rubygems