2013-05-17 62 views

回答

6

試試這個

form do |f| 
    f.inputs "Image Details" do 
    f.input :gallery 
    f.input :file 
    end 
end 
8

表單更改爲以下

form do |f| 
    f.inputs "Image Details" do 
    f.input :gallery_id, as: :select, collection: Gallery.select(:name).uniq 
    f.input :file 
    end 
end 
+0

我:名畫廊,active_admin由deafault是這樣做的下拉列表中,沒有我不必創建新類的方法。任何想法如何? –

+2

好吧,我更新了這一行:'f.input:gallery_id,如::select,collection:Gallery.select(:name).uniq'。 –

+0

是的,它確實......我只是添加了類方法,以防您更好地操作它。你可以做'f.input:gallery_id,如::select,collection:Gallery.all' –

相關問題