Completed
Last Updated: 12 Nov 2014 09:24 by Elena
ADMIN
Ianko
Created on: 29 Jan 2014 15:10
Category: UI for ASP.NET AJAX
Type: Bug Report
1
TemplateManager dialog is not functioning under IE11
On opening the TemplateManager dialog under IE11 the loading panel is not hiding.

Due to this issue, the user cannot operate with this dialog under IE11.

The following example setup is resolving the issue:

<telerik:RadEditor runat="server" ID="RadEditor1"
    OnClientCommandExecuted="OnClientCommandExecuted">
</telerik:RadEditor>

<script type="text/javascript">
    function OnClientCommandExecuted(editor, args) {
        var commandName = args.get_commandName();

        if (commandName === "TemplateManager" && $telerik.isIE) {
            var dialog = editor.get_dialogOpener()._dialogContainers["TemplateManager"];

            dialog.add_activate(fixDialog);
        }
    }

    function fixDialog(dialog) {
        dialog._onWindowUrlChanged();
        dialog.remove_activate(fixDialog);
    }
</script>
2 comments
Elena
Posted on: 12 Nov 2014 09:24
Not reproducible in Q3 2014
James
Posted on: 02 Jul 2014 08:12
It now works thanks :)