Hi All,
I am developing an application using Oracle Apex 4.2.5.
I have created a Page 1 with Chart region(Pie Chart).
In Pie Chart query i have used
select javascript:openModal('modal_region_static_id') LINK, ename, sal from emp
I have created modal region with query
select EMPNO,ENAME,JOB,MGR,HIREDATE,SAL,COMM,DEPTNO from emp where empno = :P1_empno;
Here :P1_empno is hidden field.
My requirement is Once I click on the Pie Chart, it should open the Modal region with particular employee details(Pie chart value as paramter for modal region report).
My problem is, Cant able to get the particular employee details, but modal region is opening.
How to resolve this modal region problem,
Thanks,
Su.gi