Completed
Last Updated: 17 May 2018 11:17 by ADMIN
ADMIN
Ianko
Created on: 15 Feb 2016 12:00
Category: Editor
Type: Bug Report
0
Delete and Backspace throw JS errors and are not functional under IE when selecting text from an empty area
You can workaround this issue by resetting the content area's height only for IE:

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

<script>
    function OnClientLoad(editor, args) {
        if ($telerik.isIE) editor.get_contentArea().style.height = "auto";
    }
</script>
0 comments