Tagged Questions
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 = ...
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
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
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 ...
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
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
...