https://github.com/lshgo/simple_form_chosen
# app/inputs/chosen_input.rb
class ChosenInput < SimpleForm::Inputs::Base
def input
# "$ #{@builder.text_field(attribute_name, input_html_options)}".html_safe
end
end
f.input :money, :as => :chosen
# app/inputs/collection_select_input.rb
class CollectionSelectInput < SimpleForm::Inputs::CollectionSelectInput
def input_html_classes
super.push('chosen')
end
end
f.input :money, :as => :collection, :collection =>