Tagged Questions

11
votes
4answers
4k views

Reddit-style nested/threaded/indented comments for Rails?

I'm wondering if someone has already built a system for threaded comments (for lack of a better term) in Rails or if I need to build it myself. In case it's not clear, what I'm referring to is a ...
4
votes
2answers
730 views

acts_as_tree does not destroy the model's children

I have this Task model: class Task < ActiveRecord::Base acts_as_tree :order => 'sort_order' end And I have this test class TaskTest < Test::Unit::TestCase def setup @root = ...
3
votes
3answers
76 views

acts_as_tree and has_many :through not working well together

I have the following: class Menu < ActiveRecord::Base has_many :menu_headers # has_many :menu_headers, :conditions => {:parent_id => 0} - was trying # to set parent_id to 0 for top ...
3
votes
2answers
3k views

Formtastic select with grouping

Now with Formtastic I have plain select: = f.input :category, :as => :select, :include_blank => false, :collection => subcategories Here I show only children categories. I use acts_as_tree ...
2
votes
3answers
372 views

Generate a file list based on an array

I tried a few things but this week i feel like my brain's having holidays and i need to complete this thing.. so i hope someone can help me. I need to create a filelist based on a hash which is saved ...
1
vote
1answer
68 views

Caching dynamic Acts_as_tree category list

I have a Category model which uses acts_as_tree class Category < ActiveRecord::Base acts_as_tree :order=>"name" end When I display my category tree I use recursion, and an almost identical ...
1
vote
0answers
91 views

RoR & ACTS_AS_Tree & display show page from database vs. display content

All, Working on a RoR app for work. Finally got acts as tree working with a database connection (railscast.com episode 162). Trying to shift from displaying content in the database to redirecting ...
1
vote
0answers
88 views

acts as tree in rails 3

I am facing problem with acts_as_tree_on_steroids with rails 3. Is there any plugin which will help in rails 3 same as acts as tree app/controllers/question_attributes_controller.rb:9:in `index' ...
1
vote
1answer
214 views

Building nested routes for a resource that use acts_as_tree

do you know how to generate dynamically routes such as: ... (/:parent_id(/:parent_id(/:parent_id(/:parent_id))))/:id I ask this question because I have a Folder model which acts as tree (it have a ...
1
vote
1answer
167 views

How to search a tree with sunspot & solr

I have a model that looks something like this class Post acts_as_tree end What I want to do is conduct a search on the contents of an entire thread of posts, but only return the parent post in ...
1
vote
1answer
51 views

enhancing a rails gem/plugin

I want to enhance the functionality of acts-as-taggable-on by adding parent_id and acts_as_tree to the tag model. how do i edit the gem/plugin ?
1
vote
1answer
331 views

to_xml for fully-qualified trees using acts_as_tree

I have an ActiveRecord class that uses acts_as_tree. I'm trying to update the to_xml method so that if a child record's to_xml is called it will return it's xml nested in the parent/ancestor xml to ...
1
vote
2answers
871 views

Acts as Tree with Multiple Models

I've got several models that I'd like to relate together hierarchically. For simplicity's sake, let's say I've got these three: class Group < ActiveRecord::Base acts_as_tree has_many :users ...
1
vote
1answer
180 views

Is it possible to have file-system-like routes with acts_as_tree?

I have a Folder model which acts_as_tree. Is it possible that the routes represent the folder structure? Folders: 1: Folder A 2: Folder B 3: Folder C 4: Folder D 5: Folder E Routes: ...
1
vote
4answers
491 views

Acts_as_tree - one-to-Many: Show Records associated with children on parent page

I have a relatively simple one-to-many relationship and use acts_as_tree to get it organized in the view. It kinda looks like this: Root |_Product 1 |_Product 2 |_Category 1.1 ...
0
votes
1answer
39 views

acts_as_tree vs ancestry gem for tree menu

I want to implement a tree menu (simple example of tree menu) in a Rails app that I am working on. I am unsure of whether to use acts_as_tree or Ancestry. Its seems that it would be easier to ...
0
votes
0answers
26 views

acts_as_tree, foreign key not populating and not working on has_many :through

I have the following class Menu < ActiveRecord::Base has_many :menu_headers has_many :menu_items :through => :menu_headers end class MenuHeader < ActiveRecord::Base belongs_to :menu ...
0
votes
3answers
169 views

My recursive function does not end. What am I doing wrong?

I have a model called folder that acts as a tree. Inside the model I have an instance method copy that copies folders from one place to another. When copying a folder, its sub-folders also have to be ...
0
votes
0answers
91 views

Using Act As a Tree (with weights) to Implement A Cascading Balanced Scorecard Within Ruby on Rails

I have a project at work that calls for me to create a cascading scorecard to track some company priorities. I've provided an example below. The Progress or score for the root (top) level of the ...
0
votes
0answers
327 views

Rails Acts_as_tree and many to many associations (Product, Category) Issue

I want to create simple many to many association between my product and category model. Category model currently also acts_as_tree for navigation. The code works fine but not sure why after updating ...
0
votes
1answer
156 views

Can a nested set have duplicate child objects or multiple parent_id/root/nodes?

Can a nested set have duplicate child objects or multiple parent_id/root/nodes? For instance, I want to create an application that can manage parts and equipment. However, a specific equipment can ...
0
votes
1answer
209 views

Rails - Acts as nested - Enforcing a Max Level

I'm currently using the gem 'nested_set' for comment threading. What I want to do is prevent the comment level from going more than 2 levels deep. What I tired doing was something like this: class ...
0
votes
1answer
99 views

Rspec with acts_as_tree: Helper does not see children

Trying to write a test for a helper method that uses acts_as_tree. Helper method uses a count for children: if category.children.size > 0 In my test, I'm creating a parent and child: parent = ...
0
votes
1answer
194 views

Id (autoincrementing integer) vs string employee ID as primary key - rails application

I'm writing my first rails app & want to get into some good habits from the start. The table in question is to be to hold employee data, one of the fields being the manager's ID. To reflect the ...
0
votes
1answer
252 views

How to combine two models in one RoR acts_as_tree treeview?

I have two simple models each with acts_as_tree, say Departments and Employees. My goal is to create a treeview combining both models in to one overall tree, like so: Department 1 SubDepartment 1.1 ...
0
votes
1answer
289 views

Does or can acts_as_tree be made to support eager loading?

Using acts_as_tree I would like to be able to preload an entire tree having its complete child hierarchy intact with one SQL call. To that end, I added a tree_id to the table and it runs through all ...
0
votes
1answer
151 views

Are ActiveRecord associations valid before committing to database?

I have a model which uses acts-as-tree. For example: class CartoonCharacter < ActiveRecord::Base acts_as_tree end Acts as tree has these associations: class ActsAsTree belongs_to :parent ...