Creating Checkbox Tree In Oracle Apex 5.0
Introduction This Process helps the user to create checkbox in Tree Region. Procedure Step 1 Create Tree Region Sample code: SELECT CASE WHEN CONNECT_BY_ISLEAF = 1 THEN 0 WHEN LEVEL = 1 THEN 1 ELSE -1 END AS status, LEVEL, Ename AS title, NULL AS icon,…
Read More