I'm using Oracle Apex 19.1
I have tabular form that looks like this:
When the user clicks on the button below, I want to copy the entries of the first day ("Lun. 07 Sept.") to the other days of the week.
So far, I've created a dynamic action on click, which executes the following PL/SQL:
BEGIN
FOR i IN 1..htmldb_application.g_f01.count LOOP
htmldb_application.g_f02(i) := htmldb_application.g_f01(i);
htmldb_application.g_f03(i) := htmldb_application.g_f01(i);
htmldb_application.g_f04(i) := htmldb_application.g_f01(i);
htmldb_application.g_f05(i) := htmldb_application.g_f01(i);
END LOOP;
COMMIT;
END;
Yet, nothing happens when I click the button. Any idea what I'm doing wrong ? Should I use JavaScript instead ?
I verified and the html ids of each select lists are indeed f01_0001, f01_0002, etc. (for the first column as an example).
