我想做这样的事情:
ActiveAdmin.register Split do
index do
panel "Cute" do
if cute?
column :blah
default_actions
end
end
panel "Not so cute" do
if not cute?
column :toot
default_actions
end
end
end
end
在
Cute
表中列出了所有cute?
为true的对象,然后在Not so cute
表中cute?
为false。问题是我不知道如何将其拆分为两个不同的表/面板。我收到以下错误:
undefined method `column' for <div class="index_as_table"></div>
:ActiveAdmin::Views::IndexAsTable
这使我相信我不应该在
panel
之上使用column
。我搜索了ActiveAdmin文档,但找不到有关将索引表视图分为两个表的任何信息 最佳答案
我所知道的最接近的解决方案是使用两个不同的选项卡(每个面板一个),这是在activeadmin中设置范围时自动完成的。
# app/admin/splits.rb
scope :cute, :default => true
scope :not_cute
# app/models/splits.rb
scope :cute, where(:cute=> true)
scope :not_cute, where(:cute => false)
关于ruby-on-rails-3 - 根据字段将Active Admin索引分为两个表/面板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18703735/