2015-09-07 55 views
0

我需要直接從索引內嵌布爾字段,而不從編輯頁面傳遞。best_in_place在活動管理員內聯錯誤

我得到activeadmin這個錯誤,當我把寶石best_in_place在指數:

未定義的方法'事件」的#

這裏我的代碼:

column :active do |billboard| 
     best_in_place billboard, 
       :active, 
       as: :checkbox, 
       path: [:admin, billboard.event, billboard], 
       collection: %w[HIDE SHOW] 

我在這裏的全部代碼:

index do 
    column :name 
    column :description 
    column :active 
    column :attempts_number 
    column :finished 
    column :created_at 
    # gem best_in_place 
    column :active do |billboard| 
     best_in_place billboard, 
       :active, 
       as: :checkbox, 
       path: [:admin, billboard.event, billboard], 
       collection: %w[HIDE SHOW] 
    end 
    actions 
    end 

回答

0

確保您的代碼在

index do 
... your code here ... 
end 

那麼你會得到你預期的結果在你的索引頁本身

+0

謝謝回答,我有檢查,並已經內指數呢,看看我有更新我的問題將所有代碼。 –