In this blog entry, I’m sharing a possible solution for propagating combo box selection down the ADF tree table.
Related: documentation on how to enable ADS
Sample project: http://bit.ly/LXmqxx
Note: the sample project uses slightly modified HR schema, please run the script on it:
ALTER TABLE DEPARTMENTS
ADD (DEPARTMENT_CONFIRMED VARCHAR2(1 BYTE));
ALTER TABLE EMPLOYEES
ADD (EMPLOYEE_CONFIRMED VARCHAR2(1 BYTE));
ALTER TABLE LOCATIONS
ADD (LOCATION_CONFIRMED VARCHAR2(1 BYTE));
ALTER TABLE COUNTRIES
ADD (COUNTRY_CONFIRMED VARCHAR2(1 BYTE));