Unplanned
Last Updated: 07 Jun 2016 06:39 by ADMIN
This feature is available when ContentAreaMode is Iframe.
Unplanned
Last Updated: 07 Jun 2016 06:23 by Imported User
When we use the context menu on a table to insert a new row (above or below) if the table uses css class layout, the new line is the same one in which we click with the right mouse button to open the context menu.

So my suggest is re-apply the css class layout automatically after inserting a new row or column.

I believe in using OnClientCommandExecuted event, and his call for the same function as applied css class layout for the first time.

In the Annex there is a sequence of screen shots illustrating the situation
Completed
Last Updated: 07 Jun 2016 06:10 by ADMIN
Currently RadEditor does not support ShortCuts when its toolbar is set to RibbonBar.

Possible option is to register the shortcut via client-side approach, by using the ShortcutManager object (http://docs.telerik.com/devtools/aspnet-ajax/controls/editor/client-side-programming/shortcutmanager-object):

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

<script>
    function OnClientLoad(editor, args) {
        editor.get_shortCutManager().addShortCut("TemplateManager", "CTRL+ALT+S");
    }
</script>
Declined
Last Updated: 07 Jun 2016 05:45 by ADMIN
Created by: Andrea
Comments: 1
Category: Editor
Type: Bug Report
0
I've noticed a problem that the editor is now stripping off any background-image style from any tag. The problem seems to be that it is converting single quotes (') to double quotes (") which then close the opening quote for the style property, therefore making the HTML invalid.

​

Here's how it can be reproduced:

In the rad editor go the HTML tab.

Add the following code:

<div style="background-image: url('something.jpg');">This is a test</div>

Click the Design tab, then back to the HTML tab.

Notice that the attribute has been changed so that it now reads:

<div style="background-image: url("something.jpg");">This is a test</div>

This is obviously invalid HTML. Click on the Design tab then back to the HTML tab. The style has now been removed completely.

This can be reproduced in the current Telerik demo site.
Declined
Last Updated: 07 Jun 2016 05:28 by ADMIN
Created by: Dipesh
Comments: 1
Category: Editor
Type: Bug Report
0
radeditor adding <p>&nbsp;</p> . Actual HTML just have <p></p>

Also when we swtich beween edit, HTMl and preview . It add &NBSP;
Unplanned
Last Updated: 06 Jun 2016 15:37 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: Editor
Type: Feature Request
0

			
Completed
Last Updated: 06 Jun 2016 15:29 by Andrey
Created by: akom
Comments: 1
Category: Editor
Type: Bug Report
3
Instructions:
In IE11 when we select an image and change from Design to HTML mode or try to apply any paragraph style to it, the browser gets unresponsive. 

To get a better understanding, please refer to the following videos:
http://screencast.com/t/xufHlK0bew
http://screencast.com/t/YcVcqygVY7GE

Demo page: http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx?skin=Default
Declined
Last Updated: 06 Jun 2016 15:27 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: Editor
Type: Feature Request
4

			
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: 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: 03 Jun 2016 12:48 by ADMIN
Communication between Style Builder and Table Wizard does not work. 
Completed
Last Updated: 31 May 2016 14:19 by ADMIN
When the property 'AutoResizeHeight' is set to 'true' and 'ContentAreaMode' is set to 'Div', the appearance of RadEditor will be distorted in IE10. Also, the height of the editor is reduced the first time HTML view is selected under IE10 and older versions when the same setup is used.
Won't Fix
Last Updated: 30 May 2016 14:13 by ADMIN
ADMIN
Created by: Vessy
Comments: 1
Category: Editor
Type: Bug Report
0
The value set to the EmptyMessage of the editor floats outside the EDitor if its length exceeds the Editor's width - http://screencast.com/t/rPLVwFVfU
Completed
Last Updated: 26 May 2016 12:32 by Matthew Hamilton
When using FormatBlock Tool with text inside <div> element the result differs under the different browsers.

IE:
- cursor placed inside the <div> with no selection: the <div> tag is replaced by the selected heading.
- partially selected text: the <div> is split into two and the selection is wrapped with a heading tag.

FireFox:
- cursor placed inside the <div> with no selection: a heading tag wraps the whole text and the <div> is preserved as parent element.
- partially selected text: the <div> is split into two and the selection is wrapped with a heading tag.

Chrome:
- cursor placed inside the <div> with no selection: the <div> tag is replaced by the selected heading.
- partially selected text: the <div> is split into two and the selection is wrapped with a heading tag.
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: 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: 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: 20 May 2016 16:03 by Ikbum Kim
ADMIN
Created by: Misho
Comments: 1
Category: Editor
Type: Feature Request
1

			
Won't Fix
Last Updated: 19 May 2016 17:35 by ADMIN
The 'Link Text' text box does not always appear in the Link Manager of RadEditor in IE. Behavior is observed when text in an inline element is selected and Link Manager is opened.