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: 07 Jun 2016 05:25 by croach01
Created by: croach01
Comments: 0
Category: Editor
Type: Bug Report
1
For a better description of the issue and reproduction steps, please view the ticket:

http://www.telerik.com/account/support-tickets/view-ticket?threadid=1010438

If a user clicks 'Ignore All' for a misspelled word, the focus moves to the next misspelled word after the last word included in the ignore all list.  This becomes problematic when editing a large quantity of text and the user's trying to go through things in order, but the focus moves to the very bottom of the content area.

In MS Word, it works as our users expect it would.  Once 'Ignore All' is chosen, the very next misspelled word is highlighted.

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.

Completed
Last Updated: 19 May 2016 06:47 by ADMIN
If the user opens a dialog (Table Wizard, for example) clicking the 'OK' button applies the new changes, but does not close the dialog - it instead loses focus.

The bug is reproduced in all versions of Internet Explorer when RadEditor is configured to use classic dialogs.
Declined
Last Updated: 16 May 2016 12:47 by ADMIN
Steps to reproduce:
1. Insert two lists
<ol>
    <li>test1</li>
</ol>
<ol>
    <li>test2</li>
</ol>
2. Copy the first list
3. Insert one more list item in the second list and paste the first list
Expected:
<ol>
    <li>test1</li>
</ol>
<ol>
    <li>test2</li>
    <li>test1</li>
</ol>
Actual:
<ol>
    <li>test1</li>
</ol>
<ol>
    <li>test2</li>
    <li>
    <ol>
        <li>test1</li>
    </ol>
    </li>
</ol>
Completed
Last Updated: 12 May 2016 05:15 by ADMIN
ADMIN
Created by: Vessy
Comments: 1
Category: Editor
Type: Bug Report
1
When the editor is wrapped inside a fixed size parent with overflow:y: scroll, the "Toggle Full Screen" command (F11) does not make the Editor occupy the whole view port. The issue can be reproduced in IE.

video: http://screencast.com/t/0pWlWAgKX1qD