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

 

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.
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: 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.

Unplanned
Last Updated: 20 Apr 2021 06:06 by ADMIN
Show substitute image when the image from the document cannot be rendered 
Unplanned
Last Updated: 19 Apr 2021 05:19 by ADMIN
Make the image loading async and consider reducing their size like MS Word
Unplanned
Last Updated: 16 Apr 2021 06:30 by ADMIN
Created by: Oksana
Comments: 0
Category: RichTextEditor
Type: Feature Request
2

To reproduce: 

public RadForm1()
{
    InitializeComponent();
    radRichTextEditor1.CommandExecuted += RadRichTextEditor1_CommandExecuted; 
    radRichTextEditor1.ActiveDocumentEditorChanged += RadRichTextEditor1_ActiveDocumentEditorChanged;
}

private void RadRichTextEditor1_ActiveDocumentEditorChanged(object sender, Telerik.WinForms.Documents.UI.ActiveDocumentEditorChangedEventArgs e)
{
    e.OldActiveEditor.CommandExecuted -= RadRichTextEditor1_CommandExecuted;
    e.NewActiveEditor.CommandExecuted += RadRichTextEditor1_CommandExecuted;        
}

 
private void RadRichTextEditor1_CommandExecuted(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutedEventArgs e)
{
    if (e.Command is InsertPictureCommand)
    {

        var imageInline = this.radRichTextEditor1.DocumentEditor.Document.CaretPosition.GetPreviousInline() as ImageInline;
        if (imageInline != null)
        {
            imageInline.Size = new Telerik.WinControls.RichTextEditor.UI.Size(50, 50);
        }
    }
}
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.

Unplanned
Last Updated: 02 Apr 2021 09:13 by ADMIN
Created by: JOSE MANUEL PÉREZ RAMÍREZ
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
According to the Office Open XML specification, the attributes must be used with the prefix of their namespace to ensure that the unique attribute is used. However, some tools generate invalid documents without that prefix. RadRichTextBox throws ArgumentException in such cases. Enable the control to handle similar scenarios without errors.
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 Č.
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();
}
Unplanned
Last Updated: 01 Mar 2021 16:09 by ADMIN
Bookmarks are not imported and missing from a specific document scenario.

Workaround: Import and then export the document using the WordsProcessing library and then open it with the editor.
Unplanned
Last Updated: 26 Feb 2021 06:12 by ADMIN
Created by: Telerik Admin
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
Add support for embedded objects