レポート生成用のパラメーターを収集するための形式的なフォームがあります。formtastic がモデルで使用するように設計されていることは知っていますが、フォームがアクティブな管理ページにあるため、ここで使用する必要があります。
すべてうまく機能していますが、選択のデフォルト値を設定できません。これを機能させるために、「卑劣なハック」を実装したいと思っています。フォームにデフォルト値を設定するためだけに偽のモデルを実装したくありません。
フォームコードは次のようになります
<%= semantic_form_for "report", :url => report_admin_payments_path do |f| %>
<%= f.inputs do %>
<%= f.input :report_type, :as => :select, :collection => report_types, :input_html => {:style => "width:180px"} %>
<%= f.input :start_date, :as => :string, :input_html => {:class => 'datepicker', :style => "width:60px", :value => 1.month.ago.strftime("%Y-%m-%d")} %>
<%= f.input :end_date, :as => :string, :input_html => {:class => 'datepicker', :style => "width:60px", :value => Time.zone.now.strftime("%Y-%m-%d")} %>
<%= f.input :country, :as => :select, :collection => locales, :input_html => {:style => "width:180px"}%>
<% end %>
<%= f.actions :submit %>
<% end %>
前もって感謝します、
マット