We have an application (Parent Portal) that has links to many other applications. Few applications are legacy and need to be opened in IE mode and few are modern applications that can be opened in Edge mode. There is no problem configuring this using EnterpriseSiteList. Applications open as expected in both modes from the parent window . The problem is parent window loses reference to the child window. If Parent window is in Edge mode and opens IE window, it cannot keep track of the windows opened.
Javascript :
var appWindow = window.open("/EdgeIE/Test.html", "EdgeApp", "height=400,width=400");
appWindow is null if parent is in edge and child window is in IE mode or vice versa.
Child window could not get the parent window opener as well.
Parent Application has the logout and session handling functionality. It needs to close all the child apps on logout.
Is there an alternate solution to handle this scenario
Will Microsoft enhance this feature to get reference to the child window?
There are some enhancements from Edge which was very helpful, Initially it allowed only one way cookie sharing (From Edge to IE) and now enhanced to allow both ways.