Completed
Last Updated: 01 Jul 2016 04:57 by ADMIN
Currently, the font family will not be passed to the Editor content. It's reproducible when loading tools from xml file. Possible workaround is to use ContentAreaCssFile to set such style or on the OnClientLoad event:

    <script>
        function OnClientLoad(sender, args) {
            sender.get_contentArea().style["font-family"] = "Arial, Verdana, Tahoma";
        }
    </script>
Unplanned
Last Updated: 07 Jun 2016 11:01 by ADMIN
ADMIN
Created by: Joana
Comments: 0
Category: Editor
Type: Feature Request
0
Currentluy, any content with Asian characters is not tracked.
Completed
Last Updated: 24 Jun 2016 13:05 by ADMIN
Having multiple paragraphs that are formatted with color and font-size as inline styles, selecting them and applied font-size by using RealFontSize tool causes these issues:

1. Only first paragraph is properly decorated;
2. Second paragraph is stripped from any inline styles at all;
3. The next paragraphs stay without any changes applied.


Possible workaround is to disable the ConvertFontToSpan filter:

RadEditor1.DisableFilter(EditorFilters.ConvertFontToSpan);
Declined
Last Updated: 14 Jun 2016 07:46 by ADMIN
Having a font/span tag with applied inline font-size style cannot be formatted by FontSize tool.  

This is a possible workaround that removes font-size inline style when size attribute is to be added:

<telerik:RadEditor runat="server" ID="RadEditor1" OnClientCommandExecuting="OnClientCommandExecuting">
    <Tools>
        <telerik:EditorToolGroup>
            <telerik:EditorTool Name="FontSize" />
        </telerik:EditorToolGroup>
    </Tools>
    <Content>
       <p><span style="font-size:15px;">text</span></p>
    </Content>
</telerik:RadEditor>

<script>
    function OnClientCommandExecuting(editor, args) {
        var command = args.get_commandName();
        if (command === "FontSize") {
            $telerik.$(editor.getSelectedElement()).css("font-size", "");
        }
    }
</script>
Completed
Last Updated: 03 Jun 2016 12:48 by ADMIN
Communication between Style Builder and Table Wizard does not work. 
Completed
Last Updated: 14 Oct 2016 13:33 by JP
ADMIN
Created by: Niko
Comments: 1
Category: Editor
Type: Bug Report
5
Adding the following link should not change the URL:

http://test.com?a=bc%3do
Completed
Last Updated: 17 Jan 2022 11:12 by ADMIN
Programmatically added EditorToolGroup to the RadEditor's Ribbonbar is not displayed when the control is localized in Lightweight rendering.
Completed
Last Updated: 02 Sep 2019 14:25 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 2
Category: Editor
Type: Bug Report
0
Based on customer feedback:

1) Toggle full screen
2) Finish AJAX spell checker
3) Then full screen icon is not selected even the editor is in full screen mode
Completed
Last Updated: 26 May 2016 10:50 by ADMIN
You can apply this CSS override to bring back the RadEditor defaults for the HTML mode. 

.RadForm .RadEditor .reTextArea {
    padding: 0;
    width: 100%;
    height: 100%;
    border:0;
    box-sizing: border-box;
    font-size: 11px;
    font-family: inherit;
}
Completed
Last Updated: 06 Jun 2016 10:05 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: Editor
Type: Bug Report
0
The problem is only reproducible in Chrome. The error does not affect the content or the functionality of TrackChanges. Chrome throws this exception because it tries to select unavailable DOM range. 
Completed
Last Updated: 20 May 2016 16:24 by ADMIN
The following error is thrown when RadEditor is set in Inline mode with Material skin:
TypeError: view.modesRowContainer(...) is undefined


Workaround:

Sys.Application.add_load(function () {
                var EditorLightweightView = Telerik.Web.UI.Editor.LightweightView;
                EditorLightweightView.prototype.modesRowContainerOriginal = EditorLightweightView.prototype.modesRowContainer;
                EditorLightweightView.prototype.modesRowContainer = function () {
                    return this.modesRowContainerOriginal() || {};
                }
            });

Completed
Last Updated: 24 May 2016 19:44 by Paul Potter
The error that is thrown is  "Unable to get property 'get_id' of undefined or null reference". 


Workaround:
  var EditorPrototype = Telerik.Web.UI.RadEditor.prototype;
            EditorPrototype.get_rippleZonesConfigurationOriginal = EditorPrototype.get_rippleZonesConfiguration;
            EditorPrototype.get_rippleZonesConfiguration = function () {
                if (!this._rippleZonesConfiguration) {
                    this._rippleZonesConfiguration = this.get_rippleZonesConfigurationOriginal();
                }
                return this._rippleZonesConfiguration;
            }
Completed
Last Updated: 29 Nov 2021 08:44 by ADMIN
Workaround: Set Lightweight for RadMenu in web.config:

    <add key="Telerik.Web.UI.Menu.RenderMode" value="lightweight" />
Completed
Last Updated: 06 Jun 2016 10:04 by ADMIN
When you change the render mode of RadEditor from Lightweight to Classic programmatically (like in the RenderModes demo: http://demos.telerik.com/aspnet-ajax/editor/examples/rendermodes/defaultcs.aspx), wrong items are loaded in the context menu that is displayed by right-clicking on a table cell.
Completed
Last Updated: 01 Aug 2016 08:35 by ADMIN
Possible option is to use the ToolsFile property from the code behind in order to configure a ToolsFile.xml file. 

RadEditor1.ToolsFile = "~/ToolsFile.xml";
Completed
Last Updated: 20 May 2016 16:03 by Ikbum Kim
ADMIN
Created by: Misho
Comments: 1
Category: Editor
Type: Feature Request
1

			
Unplanned
Last Updated: 19 Jan 2017 16:51 by Joe
http://demos.telerik.com/aspnet-ajax/editor/examples/trackchanges/defaultcs.aspx

Use the following markup:

<p><ins author="RadEditorUser" command="Insert" timestamp="1461912623680" title="Inserted by RadEditorUser on 4/29/2016, 9:50:23 AM" class="reU0">Apple</ins></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><ins author="RadEditorUser" command="Insert" timestamp="1461912654319" title="Inserted by RadEditorUser on 4/29/2016, 9:50:54 AM" class="reU0">Banana</ins></p>

Place the cursor in front of Banana

Press backspace

Expected: The empty paragraph is deleted OR the empty paragraph deletion is tracked (leave the preferred behavior in the comments)

Actual: The last letter of the first paragraph is deleted
Completed
Last Updated: 26 Apr 2016 05:46 by ADMIN
The content of RadEditor overflows the height ot the content area in Mobile Safari (tested with IOS 9.3). The issue is reproducible as of version 2015.3.930

Reproduction code:
        <telerik:RadEditor ID="emailMessageInput" runat="server" Style="font-size: 12px;" Height="450" Width="600">
            <Content>
                foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />foo<br />
            </Content>
        </telerik:RadEditor>
        <br />
        <asp:Button ID="btn" runat="server" Text="the editor overflows on an ipad" />
Completed
Last Updated: 08 Apr 2016 13:07 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 0
Category: Editor
Type: Bug Report
0