APEX 4.2.2
See https://apex.oracle.com/pls/apex/f?p=57688:31
Listview with simple query on EMP and DEPT
select
d.dname,
e.ename
from emp e,dept d
where e.deptno = d.deptno
order by d.dname
How can I make the List Divider into a collapsible container/header so that all containers start off closed and clicking on a list divider opens up that container and shows employees in that department?
Thanks