Rails Active Admin过滤器

时间:2014-05-29 14:30:59

标签: ruby-on-rails-4 activeadmin nested-attributes

我有三个型号的产品类别和Heureka产品被分配到一个类别,每个类别可以选择性地映射到heureka Fullname。

我正在寻找如何在category.category_name或heureka.fullname上的活动管理产品页面上编写过滤器

class Category < ActiveRecord::Base
has_many :product
has_one :heureka
end


class Heureka < ActiveRecord::Base
  belongs_to :category
end


class Product < ActiveRecord::Base
  belongs_to :category
end

1 个答案:

答案 0 :(得分:0)

ActiveAdmin使用Ransack gem创建搜索表单作为过滤器。不幸的是,它没有详细记录,你必须深入挖掘源代码。

查看更多:https://github.com/activerecord-hackery/ransack