Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I've tried an example of this forum and it works fine. I would only know, if there is a possibility to select all the Items if i select the Parent.
e.g. if i select World, it should select all, if i select Europe, it should select UK, France, Italy.
Sorry for my english.
Thank you,
Egon.
Here is my script:
T1:
LOAD * INLINE [
ID, ParentID, Name
1, , World
2, 1, Europe
3, 2, UK
4, 2, France
5, 2, Italy
6, 1, Africa
7, 6, Nigeria
8, 6, South Africa
];
Hierarchy(ID, ParentID, Name,,Name,TreeView) Load
ID,
ParentID,
Name
Resident T1;
drop table T1;
Hi,
if you select World by closed listbox it selects all undergroups, if you have it open, it selects only, what you click.
Hi,
if you select World by closed listbox it selects all undergroups, if you have it open, it selects only, what you click.
Thank you Martina
PS. Hätte mir nicht gedacht, daß es so einfach ist