heartcombo--simple_form/test/support/discovery_inputs.rb

28 lines
564 B
Ruby
Raw Normal View History

2011-04-27 19:26:02 +00:00
class StringInput < SimpleForm::Inputs::StringInput
def input(context)
2011-04-27 19:26:02 +00:00
"<section>#{super}</section>".html_safe
end
end
class NumericInput < SimpleForm::Inputs::NumericInput
def input(context)
2011-04-27 19:26:02 +00:00
"<section>#{super}</section>".html_safe
end
end
class CustomizedInput < SimpleForm::Inputs::StringInput
def input(context)
2011-04-27 19:26:02 +00:00
"<section>#{super}</section>".html_safe
end
2011-09-08 13:28:28 +00:00
2011-04-27 19:26:02 +00:00
def input_method
:text_field
end
2011-09-08 13:28:28 +00:00
end
class CollectionSelectInput < SimpleForm::Inputs::CollectionSelectInput
def input_html_classes
super.push('chosen')
end
end