Completed
Last Updated: 28 Mar 2022 16:19 by ADMIN
Release R2 2022 (LIB 2022.1.329)
The scrollbars flicker with a particular size of the form. After some time an exception is thrown as well.
Completed
Last Updated: 22 Mar 2022 13:50 by ADMIN
Release R2 2022 (LIB 2022.1.322)

RadRichTextEditor: The paste options popup stays visible when the control is hidden

 

Workaround:

((MiniToolBarBase)this.radRichTextEditor1.RichTextBoxElement.PasteOptionsPopup).Hide();

 

Completed
Last Updated: 18 Feb 2022 15:16 by ADMIN
Release R1 2022 SP1
XamlFormat provider cannot import files created with NET Framework 
Unplanned
Last Updated: 16 Feb 2022 09:24 by Jeremy

Pasting adds an additional paragraph that does not exist in the source(copy).

 

Unplanned
Last Updated: 24 Jan 2022 11:36 by ADMIN
 When importing a table from HTML and the content size is larger than the provided size  the table should be auto-fitted.
Unplanned
Last Updated: 17 Jan 2022 11:28 by ADMIN
The AddParagraphToSelection method does not work as expected. The selection is reset and the last paragraph is selected only. 
Completed
Last Updated: 13 Dec 2021 12:00 by ADMIN
Release R1 2021
If the main document part of a DOCX document is with name different than "document.xml", for example "document2.xml", the content of the document is not imported. 

Such documents are created by OpenXML SDK, if for example this tutorial is followed:
How to: Convert a word processing document from the DOCM to the DOCX file format - http://tpdogfood.telerik.com/msdn.microsoft.com/en-us/library/office/gg188063(v=office.15).aspx.
Completed
Last Updated: 13 Dec 2021 11:51 by ADMIN
Release R1 2021

The paragraphs in the table are inheriting the negative indent from the previous paragraph.

Workaround: Manually remove the negative indent from the table paragraphs after the table is added.

The workaround in code:

private void RadRichTextEditor1_CommandExecuted(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutedEventArgs e)
{
    if (e.Command is InsertTableCommand)
    {
        var table = radRichTextEditor1.Document.CaretPosition.GetCurrentTable();
       
        table.TableIndent = 0;  
        
        if (table != null)
        {
            foreach (var row in table.Rows)
            {
                foreach (var cell in row.Cells)
                {
                    foreach (var block in cell.Blocks)
                    {
                        var paragrpah = block as Paragraph;
                        if (paragrpah != null && paragrpah.LeftIndent < 0)
                        {
                            paragrpah.LeftIndent = 0;
                            paragrpah.HangingIndent = 0;
                        }
                    }
                }
            }
        }
        radRichTextEditor1.RichTextBoxElement.Document.UpdateLayout();
    }
}



 

Unplanned
Last Updated: 07 Dec 2021 14:11 by ADMIN

The built-in Hyperlink style is not applied to hyperlinks imported from HTML (<a> tag). As a result, the hyperlinks in the document does not have the blue underline.

- Import the following HTML: <a href="http://google.com">test</a>

Expected: The built-in Hyperlink style should be applied to the hyperlink spans.

Actual: The default hyperlinks style is not applied. You can indicate this by the missing underline decoration. Or by the missing value of the Style property of the hyperlink annotations.
Completed
Last Updated: 07 Dec 2021 10:35 by ADMIN
Release R3 2020
To reproduce: please refer to the attached sample project. You will notice that the exported HTML content from the left RadRichTextEditor is imported to the right and the bullets are not the same.
Unplanned
Last Updated: 01 Dec 2021 10:49 by ADMIN

When adding a new document to the same instance of a RichTextEditor, the UIProviderRegistry instance of the RichTextBox will keep a dictionary entry for a SectionLayoutBox that contains a reference to a non cleaned up WaterMarkUiProvider.

This SectionLayoutBox in turn has a reference to a DocumentLayoutBox (parent) which has a reference to an old document instance.

 

A new dictionary entry is added and (retained) for every document loaded.

 

Disposing the old document makes no difference.

 

 

Completed
Last Updated: 23 Nov 2021 09:48 by ADMIN
Release R3 2021 SP2

Hi Sir,

We updated telerik and facing some issues with that.

in new update with rich text editor has new property called  MentionBox settings of that auto added in to designer code. 

which creates an error when we run the application.

following line is auto added.

mentionBox1.FocusedItemIndex = -1;

 

we have to comment every time after doing UI changes. and we need to check every time whether that line is commented or not. 

 

Please Help Us.

Thanks,

Ashish.

Unplanned
Last Updated: 19 Oct 2021 05:50 by ADMIN
Provide an option to scale the watermark like in MS Word
Unplanned
Last Updated: 20 Sep 2021 07:44 by ADMIN
Created by: Dominick
Comments: 0
Category: RichTextEditor
Type: Bug Report
0
Break style is lost when a html is reopened
Unplanned
Last Updated: 16 Sep 2021 09:16 by ADMIN
Created by: Jagadeesh
Comments: 0
Category: RichTextEditor
Type: Feature Request
0

Introduce support for the IF field. More info here: https://wordmvp.com/FAQs/MailMerge/MMergeIfFields

 

Declined
Last Updated: 15 Sep 2021 09:53 by KKL

When I have an InlineImage in a horizontally centered paragraph, PrintPreview presents the image unevenly on the page. There should be the same space on left and right, as the page padding is the same all around. See the arrows indicated below:


Completed
Last Updated: 09 Sep 2021 07:06 by ADMIN
Release R3 2021
I just updated from 2021.1.326 to 2021.2.615 and suddenly the app hangs and eventually crashes.
Unplanned
Last Updated: 19 Aug 2021 11:43 by ADMIN
The list format is not preserved when exporting to HTML
Unplanned
Last Updated: 06 Aug 2021 10:23 by ADMIN
When exporting a single paragraph to HTML one empty span is added after the content. 
Unplanned
Last Updated: 04 Aug 2021 13:42 by ADMIN
The CSS style names shouldn't contain non-ASCII characters and if present, they should be escaped. HtmlFormatProvider doesn't escape them while exporting and cannot properly import the generated file.