olwen_demo_app/app/inputs/qi_datetime_picker_input.rb
Nicolas Bally 7b2e6811dd initial
2020-06-05 11:10:02 +02:00

13 lines
316 B
Ruby

class QiDatetimePickerInput < Formtastic::Inputs::TextInput
include FormtasticBootstrap::Inputs::Base
def to_html
r = rand(1000000000000000000000000000)
bootstrap_wrapping do
builder.text_field(method.to_s, input_html_options.merge!(:class => "datetimepicker form-control"))
end
end
end