Refresh SQL query while selecting node in tree every time to display results at some text area in the same page

529 views Asked by At

Scenario :

  1. I have created 1 tree using standard commands under one region
select case when connect_by_isleaf = 1 then 0
when level = 1 then 1
else -1
end as status, 
level, 
"NAME" as title, 
NULL as icon, 
IDENTIFIER as value, 
"NAME" as tooltip, 
NULL as link 
from owner
start with "PARENT_PAGE_NO" is null
connect by prior "PAGE_NO" = "PARENT_PAGE_NO"
order siblings by "NAME"

then i am getting some tree like this as per my db data

Inline image 1

  1. Now on the same page i have one text area or say editor which is part of another region in the same page

which have sql command to display some values like

select * from owner
where id = :idr --------------item which store value of identifier 
  1. I have one item which fetch value of IDENTIFIER name idr

  2. First time value fetch successfully when i select any node but second time on-wards when i select some another node then value didn't refresh.

So this is I want to refresh value every time so i case see results in text area

1

There are 1 answers

0
Florin Marcus On BEST ANSWER

Try to use a view link between those two views, then expose the detail view as AccessorIterator, not as Iterator.