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
謝謝回答,我有檢查,並已經內指數呢,看看我有更新我的問題將所有代碼。 –