lucifer008 / openflux

Automatically exported from code.google.com/p/openflux
0 stars 0 forks source link

Hierarchical Lists #6

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I need to take a deeper look through Kim's work and see how we can get 
hierarchical lists into the 
OpenFlux core. I'm leaning toward making this work more like a list of lists, 
but I'm not sure yet. I 
think I have to knock out some other issue before I can get this in.

Original issue reported on code.google.com by benstu...@gmail.com on 31 Jul 2008 at 3:41

GoogleCodeExporter commented 8 years ago
That was my first thought too. A list in a list. The problem is selecting an 
item in the list.

When you select a item, three levels deep, the selection mechanism selects 
three items and it's very difficult to 
discover which one you were really selecting.

That's the main reason why I made my stuff a flat list with depth levels.

Any thoughts on how you would tackle the selection problem?

Original comment by kim.gres...@estudias.com on 22 Aug 2008 at 7:29

GoogleCodeExporter commented 8 years ago
This is the same thing that I want to do too, selecting an item from a list.  I 
want
to have list within a list.  Could it be done using object like this, similar 
to the
way rows and columns work in flex lists? 

selectedItem[0][0]  List Level 0 SelectedItem 0
selectedItem[3][5]  List Level 3 SelectedItem 5

Original comment by patrickl...@gmail.com on 26 Sep 2008 at 2:06