This content has been marked as final.
Show 1 reply
-
Re: Building a treeview/hierarchy with the mapping/applymapping function
James Carpenter Aug 7, 2012 9:29 AM (in response to Marko Banjanin)mister_mapko, did you solve this problem? I think the reason you can only select the bottom rows in the hierarchy is that the upper levels don't have a row in your data. The list view feature expects that every level in the hierarchy will be represented by a row in the underlying data structure. The upper levels will have a 'parent' that points to nowhere because they are at the top level.
Somehow you would need to insert rows into your data for North America, Canada, Asia, China, etc, with the appropriate hierarchy on each one. Then your tree view should be selectable from top to bottom.
~James