次のような単純なフォームがあります。
<%= simple_form_for @study,:url => studies_path, :html => { :class => 'form-horizontal' } do |f| %>
<%= f.input :category, :collection => @categories, :label => "Category", :selected => @categories.first %>
<%= f.button :submit, t('add_form'),:class => 'btn-primary' %>
ビジュアルシュガーに過ぎない形で新しいフィールドを追加したいです。:category フィールドを動的に変更するためのヘルパーになります。
それ、どうやったら出来るの?