Completed
Last Updated: 17 May 2021 12:53 by ADMIN
If you setup multiple RadEditor controls on a single page with RenderMode set to Lightweight then when you change the foreground or background colour on one control, the other controls update their toolbar at the same time.

Sample Page code
    <h1>Editor 1</h1>
    <telerik:RadEditor ID="editor1" runat="server" RenderMode="Lightweight"></telerik:RadEditor>

    <h1>Editor 2</h1>
    <telerik:RadEditor ID="editor2" runat="server" RenderMode="Lightweight"></telerik:RadEditor>



Completed
Last Updated: 17 May 2021 12:39 by ADMIN
When the fore/backcolor of the Editor is changed through its toolbar, the same color is set to all Editors on the page. The problem is reproducible in Lightweight rendering.

Video: https://www.screencast.com/t/YQ4OnNmu
Completed
Last Updated: 17 May 2021 12:22 by ADMIN
Content font famility is changed when a word is spell checked in Chrome in Windows 7.

Video: https://www.screencast.com/t/Y358IWoWz

Steps to reproduce:

Paste the following content in this demo: http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

<span id="ctl10_supportMessagesRepeaterControl_repeaterMessages_ctl11_lblMessageText" class="text"><span style="font-family: Arial; font-size: small; background-color: #ffffff;">Dear Telerik&nbsp;</span><br style="font-family: Arial; font-size: small; background-color: #ffffff;" />
<br style="font-family: Arial; font-size: small; background-color: #ffffff;" />
<strong>Notice: Issue: 2016: WestenBook Help and Test<br />
Please check it 20170828 &nbsp;</strong><span style="font-family: Arial; font-size: small; background-color: #ffffff;"></span></span>
Completed
Last Updated: 29 Apr 2021 14:37 by ADMIN
The content is not scrolled to the end of the pasted content in IE11 - the scrollbar keeps its initial position instead. The issue is reproducible in IE (tested in IE11) and Chrome, but not in Firefox nor standard editable iframe.

Steps to reproduce:
1. Open in IE: http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
2. Paste big enough content, so the scrollbar will be shown

Actual: The scrollbar stays on the top.
Expected: The content area is scrolled to the end of the pasted content

Possible workaround could be creating a temporary selectable element after the pasted content, which to be selected manually:
		<telerik:RadEditor ID="txtMessage"  runat="server" OnClientPasteHtml="OnClientPasteHtml">
		</telerik:RadEditor>
		<script>
			function OnClientPasteHtml(editor, args) {
				if (args.get_commandName() == "Paste" && $telerik.isIE) {
					args.set_value(args.get_value() + "<div id='selectableEl'></div>");
					setTimeout(function () {
						var selectedEl = editor.get_document().getElementById("selectableEl");
						console.log(editor.getSelectedElement());
						Telerik.Web.UI.Editor.Utils.scrollTo(selectedEl, editor);
						$telerik.$(selectedEl).remove();
					}, 0);
				}
			}
		</script>
Unplanned
Last Updated: 01 Mar 2021 11:45 by ADMIN
Created by: Thippa
Comments: 0
Category: Editor
Type: Feature Request
1

I found the Rad Editor track changes feature as useful control in telerik. As many software or finance companies have their operations going on, on each stage they would require to change their BRD, UD, Product Documents etc. to keep track of the change the editor is useful.

I would like to add some points for improvement, that we have costumized in our portal.

1) Listing of all the changes in left side of the editor (Added/ Deleted/ Replaced).

2) Can track text replacement also.

 

Thank you,

Shubham
Completed
Last Updated: 15 Feb 2021 14:35 by ADMIN
Release R1 2020 SP1
We have an issue where the RadEditor context menu for <td> element doesn't get displayed. It throws a "Permission Denied" error. Within <td> the table toolbar is not functional either. 
To reproduce: In an aspx page, create an updatepanel with a LoadContent button, RadEditor and Save button.
1. Click on Load Contents button
2. RadEditor with text "Loaded" will get displayed
3. Insert a table
4. Go to a table cell and verify context menu for td shows fine
5. Click Save
6. Go to a table cell and right click - context menu doesn't show (If you have IE developers tool, you will see "Permission Denied" error.)

ASPx page:
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <asp:UpdatePanel ID="upd" runat="server">
        <ContentTemplate>
              <asp:Button ID="btnLoad" runat="server" Text="Load Contents"  OnClick="btnLoad_Click"  />
              <telerik:RadEditor ID="HTMLEditor" runat="server"></telerik:RadEditor>          
                <asp:Button ID="btnSave" runat="server" Text="Save"  OnClick="btnSave_Click" UseSubmitBehavior="false" />
        </ContentTemplate>
    </asp:UpdatePanel>     
</asp:Content>
C# Code:
 protected void Page_Load(object sender, EventArgs e)
        {
        }
        protected void btnSave_Click(object sender, EventArgs e)
        { 
            HTMLEditor.Content = HTMLEditor.Content + " updated";            
        }
        protected void btnLoad_Click(object sender, EventArgs e)
        {
            HTMLEditor.Content = "Loaded";
        }
Completed
Last Updated: 09 Feb 2021 19:23 by ADMIN
Created by: Steve Rothschild
Comments: 4
Category: Editor
Type: Bug Report
0
I recently updated my website with the dll patch telerik  provided for the cryptographic weakness:
http://www.telerik.com/support/kb/aspnet-ajax/details/cryptographic-weakness?utm_medium=email

After the update I found that the pages which were using the RadEditor control and several other controls was not loading and throwing this error:
Parser Error Message: Decryption key specified has invalid hex characters.

Several other controls are throwing this error but I cannot delete controls one by one and check which ones are having this problem.

But I checked for the RadEditor and it was throwing this error. Nothing else is there on the page while testing other than this control.
This does not happen on a plain new website and is happening when we have the sql mermbership and machine key configured. We are using passwordFormat as encrypted in sql membership config and cannot remove machine key.
If you got to test it, then test it on some already configured machine key and sql membership website.

I have attached screenshots for this error and telerik dll patch in use currently.

We are on a production server and we need a solution for this issue ASAP.
Completed
Last Updated: 16 Oct 2020 09:25 by ADMIN
Release R3 2020 SP1
Here is how to reproduce the problem on a MAC:

yorosiku (よろしく) onegai (お願い) itasimasu (いたします。)

These are the letters (and corresponding Japanese) we type to write the sentence.
We first type these three segments all together and press the Shift key to change the
characters of each segment, but if we press the Shift more than once (pressing Shift more than
once is necessary to get the right characters), it automatically copies and pastes or erases
random segments.
Completed
Last Updated: 16 Sep 2020 12:11 by ADMIN
Release R3 2020 SP1
Like the title says, when the editor renders as mobile and EnableAriaSupport="true", the editor fails to initialize on JavaScript-level.
Unplanned
Last Updated: 11 Sep 2020 13:10 by ADMIN
When track changes disabled the backspace is OK:
- User typed two lines (1) & (2)
- At the beginning of the line (2) user presses the backspace key, it successfully appended the line (2) with line (1) (where there was a space available). 
When track changes enabled the backspace does not work as expected:
- User typed two lines (1) & (2)
- At the beginning of the line (2) user presses the backspace key, it removes the end of the character in line (1).
Unplanned
Last Updated: 25 Aug 2020 15:32 by ADMIN
How to replicate the issue

1. Using the attached document, TestSample1.docx, copy and paste the content into the RADEditor and choose to remove Word Format.

2. Observe the styling and the format of the pasted content in the editor.

You will notice that the table will not appear properly and the font styling and size and all remove instead of converted.

1.  Using the attached document, TestSample2.docx, copy and paste the content into the RADEditor and choose to remove Word Format.

2. Observe the styling and format of the pasted content in the editor.

In this case, you will notice that the table is intact and font styling and size are converted to HTML format.

The difference between the TestSample1.docx and TestSample2.docx is one has numbering in Heading. The numbering appears to have affected the result of pasted content from MS Words.
The expected behaviour would be the same as the test result from TestSample2. 
Unplanned
Last Updated: 24 Aug 2020 12:05 by ADMIN

Given you have a table, where a row has multiple cells containing rowspans.

And there are also cells with no rowspan between them.

E.g. Starting HTML

<table>
    <tbody>
        <tr>
            <td rowspan="2">A1</td>
            <td>B1</td>
            <td rowspan="2">C1</td>
        </tr>
        <tr>
            <td>B2</td>
        </tr>
    </tbody>
</table>

When you delete the row (E.g. delete row 1 in the example above).

Then the cells in the resulting table are in the wrong columns.

E.g. Result HTML

<table>
    <tbody>
        <tr>
            <td>A1</td>
            <td>C1</td>
            <td>B2</td>
        </tr>
    </tbody>
</table>

Cells C1 and B2 are in the incorrect columns.

The desired outcome of deleting row 1 would be for all cells to remain in their original columns.

E.g. Desired Result HTML

<table>
    <tbody>
        <tr>
            <td>A1</td>
            <td>B2</td>
            <td>C1</td>
        </tr>
    </tbody>
</table>

Bug is reproducible in RadEditor demo using Starting HTML above (in various browsers).

Thank you,

Shane

Completed
Last Updated: 05 Aug 2020 08:46 by ADMIN
Release R3 2020
Copied line-spacing content from MS Word are not retaining same paragraph spacing because RadEditor strips the line-height style.
Completed
Last Updated: 19 Jun 2020 13:53 by ADMIN
Release R2 2020

ConvertWordLists errors out when pasting bullets in a nested table inside another table from Word. 

Test with the attached word doc in the https://demos.telerik.com/aspnet-ajax/editor/examples/cleaningwordformatting/defaultcs.aspx demo and you'll get the following error:

RadEditor.js:17416 Uncaught TypeError: Cannot read property 'appendChild' of null
    at b.WordListConverter.insertList (RadEditor.js:17416)
    at b.WordListConverter.convert (RadEditor.js:17570)
    at Object.convertWordLists (RadEditor.js:257)
    at Object.cleanPastedContent (RadEditor.js:146)
    at c.RadEditor._onAfterPaste (RadEditor.js:10229)
    at c.RadEditor.afterPasteDelegate (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_QsfScriptManager_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3ad28568d3-e53e-4706-928f-3765912b66ca%3aea597d4b%3ab25378d2:6)

 

Completed
Last Updated: 21 May 2020 09:41 by ADMIN
Release R2 2020 SP1

When the RenderMode property is set to Lightweight, File manager dialogs still load with Classic render mode, even when the <add key="Telerik.Web.UI.RenderMode" value="Lightweight" /> is set globally in the web.config:

 

<telerik:radeditor RenderMode="Lightweight" runat="server" id="mainRadEditor" EditModes="Design" >
    <Tools>
        <telerik:EditorToolGroup>
            <telerik:EditorTool Name="ImageManager"/>
            <telerik:EditorTool Name="DocumentManager"/>
        </telerik:EditorToolGroup>
    </Tools>
</telerik:radeditor>

 

This is causing rendering problems and some of the icons do not load.


Completed
Last Updated: 06 May 2020 15:33 by ADMIN
Release R2 2020
Created by: Dan
Comments: 0
Category: Editor
Type: Bug Report
1

When opening in MS Edge the Table Wizard, the items in Table Layouts tab, Select Table Style dropdown are not populated

 

WORKAROUND:

As a temporary workaround, you can use the attached script and loaded to the DialogsScriptFile property of the Editor:

<telerik:RadEditor runat="server" DialogsScriptFile="~/dialogscript.js"></telerik:RadEditor>

 

Declined
Last Updated: 30 Apr 2020 09:30 by ADMIN
Created by: Haydn
Comments: 1
Category: Editor
Type: Feature Request
0
I know that there are articles that describe how to detect that the user has interacted with the RadEditor, but checking whether the content has changed is quite another task.
I understand that the underlying storage method makes it almost impossible to compare, but that's why we need the control to do this internally.
Even if we fall short of comparing the content, at least build-in the workarounds into the control to invoke a single "Changing" event.
Unplanned
Last Updated: 22 Apr 2020 07:38 by ADMIN
RadEditor does not offer resx localization for the following Track Changes strings "Inserted by ", "Formatted by ", "Deleted by " as well as for the strings in the Comments dialog: Title, Save, Cancel and Edit.
Declined
Last Updated: 08 Apr 2020 17:23 by ADMIN
Created by: mkerchenski
Comments: 1
Category: Editor
Type: Feature Request
0
Right now if copy multiple table rows and paste them into an existing table they create a new table in that table.  We would like the ability to copy rows from a table and paste them into the same table or a new table with the same number of columns and have the new rows pasted without the creation of a nested table.
Unplanned
Last Updated: 06 Apr 2020 07:42 by ADMIN
Created by: prateek
Comments: 1
Category: Editor
Type: Bug Report
0

Hello Telerik Team,

This is regarding The SpellCheck functionality in the Telerik Editor. Basically whenever a user activates the the SpellCheck from the "abc" button, the page automatically scrolls based on the position of the word. This does not give a good user experience and makes it difficult to work on the page. 

We have seen this issue in the demos you have on your site as well.

URL: https://demos.telerik.com/aspnet-ajax/editor/examples/spellchecker/defaultcs.aspx

To Replicate go to this URL and follow the process below: 

  • Click on the "abc" button at the top left corner of the editor (1 In Image).
  • Notice that the "Suggestion box" scroll the whole page. (2 In Image)
  • Also, if you click on any other word (marked in YELLOW) in the editor, the same issue can be replicated. (3 In Image)

For your reference, we have attached a screenshot of the editor we have in our website.

 

Let us know if you require any further information to debug it.

 

Thank you,

Prateek Sanganeria