Unplanned
Last Updated: 06 May 2022 05:01 by Tejas
One is not able to set the font size of span to less than 2
Unplanned
Last Updated: 05 Apr 2022 10:45 by Timo
Importing HTML leaves the Default Style with Verdana font instead of Times New Roman.
Unplanned
Last Updated: 04 Apr 2022 08:56 by Timo

Importing this:

<p>This is a paragraph.</p>
<p>
	This is a paragraph.
</p>

should import two identical paragraphs, but it actually import it like this:

This is a paragraph.
 This is a paragraph.

It has a leading space before the second paragraph.

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

 

 

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: 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.
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: 17 Feb 2021 10:11 by ADMIN
Missing table border resulting from an incorrect table borders inheritance
Unplanned
Last Updated: 27 Jan 2021 08:53 by ADMIN

If we copy-paste some french text; f.e. generated by https://fr.lipsum.com/:

This is the original text:

"Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression. Le Lorem Ipsum est le faux texte standard de l'imprimerie depuis les années 1500"

This is what we see if we past it inside the rich text component

Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression. Le Lorem Ipsum est le faux texte standard de l'imprimerie depuis les années 1500

Unplanned
Last Updated: 07 Jan 2021 05:32 by ADMIN
Character properties applied on the last paragraph symbol for a paragraph in a list, e.g. font size, are not exported to HTML when StyleExportMode is Inline. 

As a side effect, when the document is imported back, and the text of the bullet is deleted, its properties switch back to the default ones.

Workaround: Change the styles to export as inline properties:
htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Classes;
 
Please be aware that this may cause side effects, as described in this issue: RichTextBox: Character properties of the paragraph symbol are exported to HTML for the whole list item when StyleExportMode is Classes
Unplanned
Last Updated: 17 Dec 2020 13:45 by ADMIN

The cell BackColor should be set when setting the paragraph BackColor.

Workaround: use the table properties dialog to set the back color.
Unplanned
Last Updated: 03 Dec 2020 12:09 by ADMIN
After a hyperlink is edited in a RTF document it duplicated
Unplanned
Last Updated: 25 Nov 2020 12:47 by ADMIN
The pasted text is not encoded decoded when the target framework is .Net 4.0 and the text contains some symbols like é, è, à, ê, ù, etc.