Won't Fix
Last Updated: 08 Jun 2022 08:28 by ADMIN
ADMIN
Ivan Danchev
Created on: 23 Jun 2017 13:02
Category: Window
Type: Bug Report
0
RadWindow is visible in OnClientClose event (IE11)

Workaround in OnClientBeforeClose (commented):

 

<telerik:RadWindowManager RenderMode="Lightweight" OnClientClose="OnClientClose"
     OnClientBeforeClose="OnClientBeforeClose" Behaviors="Close, Move, Resize,Maximize"
     ID="RadWindowManager" runat="server" Width="450" Height="400">
    <Windows>
        <telerik:RadWindow RenderMode="Lightweight" ID="RadWindow1" VisibleOnPageLoad="true"
            Title="Wikipedia" _NavigateUrl="http://www.wikipedia.org" IconUrl="wikiFavicon.ico" runat="server">
        </telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>
<script type="text/javascript">
    function OnClientBeforeClose(oWnd, args) {
        //workaround:
        //oWnd.get_popupElement().style.visibility = "hidden";
    }


    function OnClientClose(oWnd) {
        debugger;
    }
</script>


		
2 comments
ADMIN
Rumen
Posted on: 08 Jun 2022 08:28
The issue occurs under IE only and since Microsoft is discontinuing Internet Explorer on June 15, 2022, we decided to not fix it. You can see more at

Internet Explorer 11 desktop application ending support for certain operating systems.

Please use the workaround provided by Ivan and encourage your users to use Google Chrome, Microsoft Edge Chromium, or Firefox instead of IE.
ADMIN
Ivan Danchev
Posted on: 23 Jun 2017 13:04
deleted by danchev