Completed
Last Updated: 21 Jul 2015 11:58 by ADMIN
ADMIN
Ianko
Created on: 02 Jul 2015 10:04
Category: Editor
Type: Bug Report
0
Showing RadEditor with Lightweight rendering via AJAX request leads to insufficient content area
Such a scenario is reproducible when RadEditor is used in Template container and the control is AJAX-enabled. For example, in an EditTemplate or InsertTemplate. 

To workaround this bug, you need to assure that the base CSS resource is loaded before RadEditor. To do so, add manually the resource in the head element of the page:

<head runat="server">
    <title></title>
    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
        <link href='<%= Page.ClientScript.GetWebResourceUrl(typeof(RadEditor), "Telerik.Web.UI.Skins.EditorLite.css") %>'
            rel="stylesheet" type="text/css" />
    </telerik:RadCodeBlock>
</head>
0 comments