Completed
Last Updated: 27 Jan 2015 15:20 by ADMIN
ADMIN
Ianko
Created on: 17 Jun 2014 06:00
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Performance issues under Chrome when in the content is inserted HTML with large amount of nested tables and images
When the editor is loaded with a full HTML page editable document, which contains nested tables with images inside, selecting an image causes the Chrome browser to break. 

Possible workaround is disabling the resize widget of the tables and images in Chrome by incorporating this sample code:

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

<script type="text/javascript">
    Telerik.Web.UI.RadEditor.prototype._initializeResizableWidget =
        function myfunction() { };
</script>
0 comments