2
那裏有batch_action軌activeadmin member_action形式支持
batch_action :flag, form: {
type: %w[Offensive Spam Other],
reason: :text,
notes: :textarea,
hide: :checkbox,
date: :datepicker
} do |ids, inputs|
redirect_to collection_path, notice: [ids, inputs].to_s
end
但我需要類似的形式彈出,當我點擊一個鏈接member_action,我怎麼能歸檔格式的支持?
如果我在member_action中使用渲染視圖,它將重定向到新的頁面,不彈出。如果我直接使用引導模式,則樣式不能與activeadmin主題相同。
如果我使用member_action,不應該有ID,輸入。我認爲閃光不是合理的方式。 –