私はこのようなsmthを持っています:オプション付きのf.collection_select
そのcollection_selectの標準的な動作を変更する必要があります(そこにいくつかのオプションを追加する必要があります)
どこでやればいいですか?
このコードは機能していないと思いますが、あなたはその考えを理解するでしょう
def collection_select(method, collection, value_method, text_method, options = {}, html_options = {})
if options[:create_div]
return '<div>' + @template.collection_select(@object_name, method, collection, value_method, text_method, objectify_options(options), @default_options.merge(html_options)) + '</div>'
end
@template.collection_select(@object_name, method, collection, value_method, text_method, objectify_options(options), @default_options.merge(html_options))
end