problem in hierarchical tree [message #635366] |
Sat, 28 March 2015 03:06 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/b180859f5c4a93d31c5a339c30b42f4b?s=64&d=mm&r=g) |
hahaie
Messages: 194 Registered: May 2014
|
Senior Member |
|
|
hi all,
i have a hierarchical tree on my form.
for example i want when user cliced on a node of tree show window.
i used WHEN_TREE_NODE_SELECTED::
/*this codes is a example*/
if :system.trigger_node=1 then
show_win('win1');
elsif :system.trigger_node=2 then
show_win('win2');
elsif :system.trigger_node=3 then
show_win('win3');
end if;
but problem:
when i click on each node first time this is correct but for example i click on node 1 win 1 shown and then click on node 2(or 3)first showed win1 and second showed win2(or win3).
why?
|
|
|
|
|