Completed
Last Updated: 21 Aug 2015 15:31 by ADMIN
ADMIN
Ianko
Created on: 28 Jul 2015 07:16
Category: Editor
Type: Bug Report
0
JS error is thrown when selecting an image in paragraph in full HTML page mode and switching from HTML to Design under Chrome
The error causes the editor's content area not to render. 

The following script can be used as a temporary workaround:

<telerik:RadEditor runat="server" ID="RadEdior1" OnClientSelectionChange="OnClientSelectionChange">
</telerik:RadEditor>

<script type="text/javascript">
    function OnClientSelectionChange(editor, args) {
        if (!editor.getSelectedElement()) {
            editor.focusFirstText();
        }
    }
</script>

0 comments