Re: [E-devel] [ELM] Genlist tree: manage subitems in genlist

2011-06-01 Thread The Rasterman
On Fri, 27 May 2011 21:23:29 +0200 Atton Jonathan said: > Hello, > > Curently when we which to have a tree in a genlist the application must: > - when an item is expand : the application add subitems > - when an item is collapse : the application delete subitems > > why this comportment is not

Re: [E-devel] [ELM] Genlist tree: manage subitems in genlist

2011-05-29 Thread Daniel Juyung Seo
I think that's related to genlist's internal implementation. It's easy to maintain the internal list by doing the current way. But if we adopt your suggestion, genlist need to check if this item is visible or not and if it's not visible, we need to reposition other items. In application's perspect

[E-devel] [ELM] Genlist tree: manage subitems in genlist

2011-05-27 Thread Atton Jonathan
Hello, Curently when we which to have a tree in a genlist the application must: - when an item is expand : the application add subitems - when an item is collapse : the application delete subitems why this comportment is not directly in genlist. The genlist could show/add items automaticaly ? Th