Tagged Questions

0
votes
1answer
18 views

How to properly sort MPTT hierarchy data into multidimensional array ?

Helo there, im trying to figure out how to write a function that returns a multidimensional array, based on the data below: I know how to write the function using the "category_parent" value, but im …
0
votes
1answer
43 views

Modified preorder tree traversal - finding the next node

Hi, I have this data: id | parent_id | lft | rgt | name ===================================== 1 | 0 | 1 | 8 | abc 2 | 3 | 5 | 6 | jkl 3 | 1 | 2 | 3 | def 4 | …
0
votes
1answer
129 views

Finding a subtree in a CakePHP Tree

In CakePHP, how do you select just a subtree in a model which actsAs tree? I tried this, to find the tree headed by the item with label = "My Label" $this->find("threaded", array( …
0
votes
1answer
50 views

Django treebeard what are differences between AL, NS, MP

Hi! I'm trying to make a model for categorizing some objects. I already tried using django-mptt to easily retrieve related categories, and now I'm searching different solutions to find the best one. …
0
votes
1answer
75 views

MPTT ( Modified Preorder Tree Traversal) issue in PHP

Hi guys, My first post here! Seems like this is the place to get wise ;) I am currently in the middle of some testing with my first ever attempt to try the MPTT (Modified Preorder Tree Traversal) …
1
vote
3answers
482 views

How to convert this MPTT array into a tree structure in PHP?

I've got hierarchal data in the database, stored in Modified Preorder Tree Traversal format. I'm pulling the data in a query that looks something like "SELECT ID, Left, Right, Name, etc FROM Table …
0
votes
1answer
32 views

Suggested indices for a MPTT table

I'm just building a table to store hierarchical data using the Modified Pre-order Tree Traversal (MPTT) -- you know the one: each node stores the left and right IDs to find its descendants. I'm using …
0
votes
0answers
38 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
1answer
339 views

Sort MPTT resultset into a multidimensional array PHP

I have been experimenting with the Modified Pre-Order Tree Traversal Pattern, my test case code is returning the results as expected however I am having trouble converting the 2D array into a …
0
votes
3answers
159 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 …
1
vote
2answers
154 views

How would you sort a django mptt tree?

Withdrawn.
1
vote
2answers
490 views

Problem using django mptt

Hi, I am having problem implementing django mptt. Here is my model: class Company(models.Model): name = models.CharField( max_length=100) parent = models.ForeignKey('self', …
1
vote
3answers
838 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, …