Hello,
I have this form window that allow user to update each of row of the report. Since it involves multiple tables, I have a couple of dynamic actions of the button (click to apply the changes) to do data update and close the dialog. But after the window is closed, the parent report page is not automatically refreshed. I tried to add this line into the PL/SQL code that has update statement, it always reports syntax error on #P30_region_id, which is the real static ID value of the region in parent report page:
htp.p('parent.$('#P30_region_id').trigger('apexrefresh');');
Then, I created a javascript function, try to call it in another dynamic action of the button , but nothing happens, no error either.
function refreshParentPage(){
parent.$('#P30_region_id').trigger('apexrefresh');
}
Anything else I can try? Thanks!
Sincerely,