Hello everyone,
I'm using Jdeveloper/ADF 12.2.1.4.
I'm showing the user a popup which asks for a file and upload the file.
<af:showPopupBehavior popupId="p2" align="endAfter"/>
<af:popup id="p1" contentDelivery="lazyUncached">
<af:dialog id="d1"
title="#{mcMainViewControllerResourceBundle.UPLOAD_FILE_TITLE}"
partialTriggers="t2"
dialogListener="#{pageFlowScope.downloadBean.checkinEnvelop}">
<af:panelFormLayout id="pfl1">
<af:inputFile label="#{mcMainViewControllerResourceBundle.UPLOAD_FILE}"
id="if1" value="#{pageFlowScope.downloadBean.file}"
autoSubmit="false"/>
After which a navigation is performed to refresh the page (all done in calling the checkinEnvelop method).
ADFUtils.performTaskFlowNavigation("refreshList");
This all works fine in Chrome 105.0.5195.127 and Firefox 87.0 (64-bit), but not in Edge 91.0.864.59 (Official build) (64-bit).
In Edge the upload is performed correctly, as well as all db actions, but the screen hangs on the popup and won't close. Afterwards the entire application is not responding any more, the user most create a new session to get everything back operational.
Any idea what did could cause?
Thx in advance.
Filip