Tagged Questions

4
votes
7answers
2k views

Searching for the best PHP nested sets class (PEAR class excluded)

I'm looking for a PHP (with MYSQL) nested sets class with all needed functions. For example: createLeftNode, createRightNode,createRootNode, createSubNode,deleteNode and moveTree. Not only 1 left, 1 …
2
votes
1answer
50 views

How to Query Nested Set model with multiple roots plus filtering

Hello All, How do you query a nested set model with multiple roots, such trees in the same table? Currently, I added an extra column called the "Root" indicating the ID of the root node for all …
2
votes
2answers
561 views

How to create a sortable interface with ‘acts as nested set’ in RubyOnRails

I've been implementing some nice interactive interfaces that can sort lists in my m rails app for models that use acts_as_list. I have a sort function that gets called and sets the position for each …
2
votes
2answers
525 views

PHP RecursiveIteratorIterator and nested sets

Hi, I have a set of objects in a hierachy. There's a top "root" node and that has child nodes, which in turn have child nodes etc. I'm trying to save this structure into a DB using the nested set …
2
votes
1answer
367 views

Help with writing a SQL query for Nested Sets

I'm storing a tree in a DB using nested sets. The table's fields are id, lft, rgt, and name. Given a node ID, I need to find all of its direct children(not grandchildren) that are themselves leaf …
1
vote
5answers
318 views

How to build a threaded Comment System in C#? Help…

Hey All, Im building a Threaded Comment System for a website of mine and I ran into a problem... I have a list PULLED FROM A DATABASE that has a ID field and a Parent ID Field. The parent ID field …
1
vote
3answers
828 views

Building hierarchy objects from flat list of parent/child

I have a list of items in a hierarchy, and I'm attempting to parse this list out into an actual hierarchy of objects. I'm using modified pre-order tree traversal to store/iterate through this list, …
0
votes
1answer
26 views

Propel NestedSet creating Balanced Tree

Hi folks, I'm trying to use Propel's NestedSet feature. However, I'm missing something about inserting such that the tree is balanced as it is created (i.e. fill it in horizontally). Say I have …
0
votes
1answer
155 views

Symfony: Model Translation + Nested Set

Hi, I'm using Symfony 1.2 with Doctrine. I have a Place model with translations in two languages. This Place model has also a nested set behaviour. I'm having problems now creating a new place that …
0
votes
0answers
36 views

Sorting items in MPTT result set?

Hi there. I'm using the MPTT (i.e., nested set) model to store hierarchical data in my MySQL table. My question is this: has anyone figured out a clever way to sort the results of a query on the tree? …
0
votes
4answers
269 views

Build dynamic menu using Nested Sets

I am trying to build a dynamic menu in my PHP CMS; the pages/categories are organized using the nested sets model. Full tree: root A B B1 B1.1 B1.2 B2 B2.1 B2.1 C C1 C2 C3 …
0
votes
1answer
156 views

SQL query to avoid fetching the entire nested set when parts of it are collapsed by the user

I'm trying to tie django-mptt and contrib.admin together by providing something friendlier than a flat list in the admin. Because the trees are supposed to be large (otherwise i wouldn't be using …
0
votes
3answers
156 views

Finding breadcrumbs for nested sets

I'm using nested sets (aka modified preorder tree traversal) to store a list of groups, and I'm trying to find a quick way to generate breadcrumbs (as a string, not a table) for ALL of the groups at …