Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
];
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?