2011-12-20 126 views
0

我目前有active_admin(它使用formtastic也安裝),當然還有formtastic本身也是如此。Formtastic選擇框,單選按鈕等無法正常工作

請看看下面的代碼:

<%= f.inputs :hero_id, :as => :select, :collection => Hero.find(:all) %> 
<%= f.inputs :name %> 
<%= f.inputs :starting_items, :as => :select, :collection => Item.find(:all) %> 
<%= f.inputs :early_items, :as => :select, :collection => Item.find(:all) %> 
<%= f.inputs :core_items, :as => :select, :collection => Item.find(:all) %> 
<%= f.inputs :situational_items, :as => :select, :collection => Item.find(:all) %> 

<%= f.buttons %> 

這完全一樣的代碼顯示填充數據只是罰款active_admin選擇框。
但是,在我的網站上它只會顯示text_fields,不會有任何選擇框!

任何人都知道這裏可能是什麼問題? 因爲我在我的網站上有其他幾種形式,所以我可以修復,如果我可以得到這個正常工作。所有的表格只顯示text_fields而不是選擇框,單選按鈕,複選框等。

回答

2

您應該使用f.input而不是f.inputs