我有以下型号:
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中执行此操作?
答案 0 :(得分:0)
这post应该为您提供几种选择,以满足您的需求。而且,这是关于为rails_admin中的关系构建自定义视图的另一个post。
查看此帖子Rails3 + Typus: display habtm relationship as checkboxes