Nested Select in Rails
- by James
I am working on a Rails application which uses categories for items.
My category model is self-joined so that categories can be nested:
class Category < ActiveRecord::Base
has_many :items
# Self Join (categories can have subcategories)
has_many :subcategories, :class_name => "Category", :foreign_key => "parent_id"
belongs_to :parent, :class_name => "Category"
...
end
I have a form which allows a user to create an item which currently lists all categories in a select, but they are all listed together:
<%= f.label :category_id %>
<%= select :item, :category_id, Category.all.collect {|c| [ c.title, c.id ]} %>
So the select looks something like this:
Category1
Category2
Category3BelongsTo2
Category4BelongsTo1
But what I want is:
Category1
- Category4BelongsTo1
Category2
- Category3BelongsTo2
Is there a helper for this (which would be awesome!)? If not, how could I accomplish this?
Thanks!