Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
alan_grn
Creator II
Creator II

Selection of Parent in Treeview

I have created a listbox and set it to display as treeview.

I can select the lowest level child node, but cannot slected the parent.

In the Whats new in QV9 app they have a treeview where you can select the parent. Does this have something to do with the way that I have created the treeview?

I am using QV SR2.

2 Replies
Not applicable

to select parent in your treeview. Your data field should be recursive e.g.


delimiter '.'
---------------------------
LOAD * INLINE [
salesman
salesman
onder
onder.alan
mark
mark.john
];


if is not .. ; thats not a problem you can do something ...

find your parent datas and force concatenate which table contain your treeview field data ...(e.g)


LOAD * INLINE [
salesman, sales
onder.alan, 10
mark.john, 5
];
concatenate LOAD * INLINE [
salesman
onder
mark
];


alan_grn
Creator II
Creator II
Author

That is almost there. If I expand the tree and then selct the parent, it does not display a value for sales.

How do I think the parent to the child then?