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: 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: 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
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.
Completed
Last Updated: 04 Jun 2021 09:38 by ADMIN
Release R2 2021 SP1 (LIB 2021.2.607)
Created by: Oksana
Comments: 1
Category: RichTextEditor
Type: Bug Report
0

Hi Team, 

We found an issue in Spell Check Feature in  RichTextEditor, the Spell Checking Dialog auto-correct the spelling issues on scroll without clicking on the "Change" button.

We are able to reproduce this in the Demo application. please have a look at the below screencast.

https://www.screencast.com/t/EieqvrvSiSq

Thank you.

Completed
Last Updated: 30 Apr 2021 13:42 by ADMIN
Release R2 2021
When changing the theme to a dark theme the Rich text editor appears to have an issue converting the Styles tab as below. Expected to see conversion from light theme styles to dark themes styles.

Completed
Last Updated: 16 Apr 2021 08:46 by ADMIN
Release R2 2021
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: RichTextEditor
Type: Bug Report
3
Add only a RichTextEditorRibbonBar without any other control on the form. If you run the application you will notice that it loads more than one second. We should investigate if it is possible and how to improve the initialization time.
Unplanned
Last Updated: 31 Mar 2021 09:06 by ADMIN
To reproduce the problem create new blank Word document (from MS Word). Hold Alt key and type 0268. You will see a letter Č (Latin letter C with caron). In Visual Studio create a Word-inspired project, and run it. Copy the text from Word document to the Telerik RTF editor. Now in Telerik RTF editor change the font of this letter to Algerian. I have Algerian font with my Office 2013, so I hope you'll have it too; you can use Symbol font instead of Algerian for the same result. My Algerian font does not support letter Č, so in Telerik RTF editor I will see a narrow empty box (also called "tofu") instead of letter Č.
Completed
Last Updated: 26 Mar 2021 09:40 by ADMIN
Release R2 2021 (LIB 2021.1.329)

To reproduce: 

  • Add a table and select 3 rows.
  • From the context menu select Delete Row
  • Only one row is deleted
Unplanned
Last Updated: 19 Mar 2021 06:18 by ADMIN

One cannot paste when the AutomaticallyLoadFormatProviders property is false. Even if you register the format providers manually: 

public MainWindow()
{
    DocumentFormatProvidersManager.AutomaticallyLoadFormatProviders = false;
    DocumentFormatProvidersManager.RegisterFormatProvider(new HtmlFormatProvider());
    DocumentFormatProvidersManager.RegisterFormatProvider(new RtfFormatProvider());
    DocumentFormatProvidersManager.RegisterFormatProvider(new DocxFormatProvider());
    DocumentFormatProvidersManager.RegisterFormatProvider(new Telerik.Windows.Documents.FormatProviders.Xaml.XamlFormatProvider());
    InitializeComponent();
}