如何仅在Rails_Admin中显示类别的子类别

时间:2012-07-28 20:49:58

标签: ruby-on-rails-3.2 rails-admin

我有以下型号:

Category

has_and_belongs_to_many :subcategories
has_many :resources

Subcategory

has_and_belongs_to_many :categories
has_and_belongs_to_many :resources
Resource

has_and_belongs_to_many :subcategories
belongs_to  :category

在Rails_Admin中创建或编辑资源时,我想显示所选类别的子类别。

我怎样才能在rails_admin中执行此操作?

1 个答案:

答案 0 :(得分:0)

post应该为您提供几种选择,以满足您的需求。而且,这是关于为rails_admin中的关系构建自定义视图的另一个post

被修改

查看此帖子Rails3 + Typus: display habtm relationship as checkboxes