Completed
Last Updated: 24 Nov 2015 11:06 by ADMIN
For the time being you can disable the StripCssExpressions  filter:
    protected void Page_Load(object sender, EventArgs e)
    {
		RadEditor1.DisableFilter(Telerik.Web.UI.EditorFilters.StripCssExpressions);
    }

Alternative approach to fix the issue is removing the StripCssExpressions filter from the client-side filters collection, so that the server-side functionality could still sanitize the HTML content:

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

<script type="text/javascript">
	function OnClientInit(sender, args) {
		sender.set_contentFilters(sender.get_contentFilters() - Telerik.Web.UI.EditorFilters.StripCssExpressions);
	}
</script>
Completed
Last Updated: 17 Nov 2015 07:05 by ADMIN
When the EnableTrackCahnges functionality of the Editor is set to true, a context menu is shown only if the user right-clicks over a tracked change. Clicking over a not changed element does not pop-up any context menu (neither the Editor's not the browser one). The issue is reproducible in all browsers.

Steps to reproduce:
1. Run the following configuration:

            <telerik:RadEditor ID="RadEditor1" runat="server" EnableTrackChanges="True">
                <Content>
                    <span>SPAN dssad</span>
                    <div>DIV fsdfksjdfkf</div>
                    <p>Paragraph jfdshfksjdhfksdhk</p>
                </Content>
            </telerik:RadEditor>

2. Right-click over a not track-changed element.

Actual result: No context menu is shown.

Expected result: The Editor's default content menu (or the browser on) is shown.
Completed
Last Updated: 17 Nov 2015 06:49 by ADMIN
When a tool has a longer name, part of the text drops to a new line, and causes incorrect layout. 

To resolve you can use the following CSS rule:

.reDropDownBody a.reTool.reToolText {
    white-space: nowrap;
}
Completed
Last Updated: 17 Nov 2015 06:32 by ADMIN
When pasting list items over an existing one, the list from the clipboard is added to new UL element. The proper behavior it should be to paste the existing content and adapt it to the existing list.
Completed
Last Updated: 17 Nov 2015 06:23 by ADMIN
When EnableTrackChanges property of RadEditor is set to true:

-The font name of the written text in RadEditor cannot be change and instead the default one is used. This behavior is observed under FireFox, Chrome and Safari. The workaround is to mark the already written text and then set the desired font.

-The chosen font size from the toolbar returns to its default value when the cursor changes its position and then returns back to its previous position. This behavior is observed under FireFox.
Completed
Last Updated: 17 Nov 2015 05:57 by ADMIN
Set the NewLineMode to br tag. Then inserting a list and closing it appends the following:

<p>&nbsp;</p>

It should be appending a <br> element corresponding to the set mode.
Completed
Last Updated: 29 Oct 2015 18:54 by ADMIN
Using an MS Word file with an inline image or an carriage return (<br/>) to paste the content in the editor, the ConvertWordList StripFormatting option removes the <img /> and <br /> elements. 
Completed
Last Updated: 20 Oct 2015 06:51 by ADMIN
When user selects an image in the RadEditor resize handles appear. When resizing or replacing the image, the same handles still appear at the initial position. This confuse the users that the image is not selected and leave an incorrect trace of the resize handles. 
Completed
Last Updated: 19 Oct 2015 10:08 by ADMIN
When using the Flash Manager to add a flash object into the content, causes the HTML mode to be non editable. 

The following example code is a possible workaround for this behavior:

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

<script type="text/javascript">
    function OnClientModeChange(editor, args) {
        var $ = $telerik.$,
            mode = editor.get_mode(),
            contentAreaElement = editor.get_contentArea(),
            editorModes = Telerik.Web.UI.EditModes;

        if (mode === editorModes.Html) {
            $(contentAreaElement).hide();
        } else {
            $(contentAreaElement).show();
        }
    }
</script>
Completed
Last Updated: 14 Oct 2015 12:36 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Editor
Type: Bug Report
0

			
Completed
Last Updated: 12 Oct 2015 08:47 by Phil
The resize handles of the ImageEditor's drawing tools are displaced when the edited is zoomed (both zoomed in or out).
Completed
Last Updated: 06 Oct 2015 14:44 by ADMIN
When a link is highlighted in the content, the RadEditor does not seem to recognize it as an anchor element. Due to that the the properties inspection module do not show the expected properties and the Hyperlink Manager do not work also.  
Completed
Last Updated: 06 Oct 2015 14:42 by Chad
Steps to reproduce the issue:

1) Run the code below in IE11

2) Set background color to the "some text" cell by right clicking and then selecting cell property through the context menu.

3) Switch to design - there are many nbps's added.

ASPX:

<telerik:RadEditor ID="RadEditor1" runat="server">
            <Content>
                <table>
                    <tbody>
                        <tr>
                            <td>&nbsp;</td>
                            <td>&nbsp;</td>
                            <td>&nbsp;</td>
                        </tr>
                        <tr>
                            <td>&nbsp;</td>
                            <td>
                            <table>
                                <tbody>
                                    <tr>
                                        <td>&nbsp;</td>
                                        <td>&nbsp;</td>
                                        <td>&nbsp;</td>
                                    </tr>
                                    <tr>
                                        <td>&nbsp;</td>
                                        <td>some text&nbsp;</td>
                                        <td>&nbsp;</td>
                                    </tr>
                                    <tr>
                                        <td>&nbsp;</td>
                                        <td>&nbsp;</td>
                                        <td>&nbsp;</td>
                                    </tr>
                                </tbody>
                            </table>
                            &nbsp;</td>
                            <td>&nbsp;</td>
                        </tr>
                        <tr>
                            <td>&nbsp;</td>
                            <td>&nbsp;</td>
                            <td>&nbsp;</td>
                        </tr>
                    </tbody>
                </table>
            </Content>
        </telerik:RadEditor>
For the time being you can place the following JavaScript workaround below the editor's declaration:

        <script type="text/javascript">
            if ($telerik.isIE) {
                Telerik.Web.UI.Editor.CommandList.SetCellProperties = function (commandName, editor, commandArgs) {
                    var $ECL = Telerik.Web.UI.Editor.CommandList;
                    var argument = $ECL._getTableArgument(editor, 2, false, true);

                    if (!argument) {
                        alert(editor.getLocalizedString("cellwarning"));
                        return false;
                    }

                    $ECL._getDialogArguments(argument, "TABLE", editor, commandName);

                    var previousTable = $ECL._getParentTable(editor);

                    var callbackFunction = $ECL.getCallbackFunction(commandArgs, function (sender, args) {
                        $telerik.$(args.tableToModify).insertAfter(previousTable);
                        $telerik.$(previousTable).remove();

                        if (args.styleSheetToImport)
                            $telerik.$(args.styleSheetToImport).insertAfter(args.tableToModify);
                        if (args.styleSheetToRemove)
                            $telerik.$(args.styleSheetToRemove).remove();
                    });
                    editor.showDialog("TableWizard", argument, callbackFunction);
                    return false;
                }
            }
        </script>

Completed
Last Updated: 06 Oct 2015 14:30 by ADMIN
When a BR tag has no precedent text, it is automatically removed. This causes issues when user wants to add some space between lines in the content.

For the time being you can use the ContentAreaMode="Iframe" mode as an alternative solution.
Completed
Last Updated: 02 Oct 2015 13:40 by Danny
When the RadEditor is used on Chrome, it is not focused and you click on the empty space in the content area or call the client-side function 'setFocus', the cursor in the content area will not appear, because the editor does not get the focus.

You can use the following workaround to avoid the problem when the editor's content is clicked:
        <telerik:RadEditor runat="server" ID="RadEditor1" OnClientLoad="OnClientLoad">
        </telerik:RadEditor>

        <script type="text/javascript">
            function OnClientLoad(editor, args) {
                if ($telerik.isChrome) {
                    setTimeout(function () {
                        var body = editor.get_contentArea();
                        var contentElm = editor.get_contentAreaElement();

                        body.style.height = (contentElm.offsetHeight - 10) + "px";
                    }, 0);
                }
            }
        </script>
Completed
Last Updated: 02 Oct 2015 10:05 by ADMIN
The RadEditor is posting multiple symbols when you select to insert a symbol. This happen when the RenderMode is set to LightWeight. The problem is reproducible also when inserting code snippets via the "Insert Code snippet" tool.
video - http://screencast.com/t/DfBMWrW4Px7I

Steps to reproduce:
1. Open http://demos.telerik.com/aspnet-ajax/editor/examples/rendermodes/defaultcs.aspx
2. Try to insert a symbol through "Insert Symbol" command
    Result: Two symbols are inserted instead of one
Completed
Last Updated: 30 Sep 2015 09:42 by ADMIN
When opening a RadEditor under Chrome and switch to HTML mode in the bottom left corner, close to the Design title there is missing a small part of the border.
Completed
Last Updated: 29 Sep 2015 12:05 by ADMIN
FileBrowser dialogs cannot upload files greater than 200kb when AsyncUpload is disabled (i.e., the Upload control is used instead).