Unplanned
Last Updated: 18 Jan 2022 12:57 by ADMIN

In this feature, the existing text is overridden as the user types on it with the "Insert" key is pressed on the keyboard.

Workaround: Track the state of the Insert key and delete before inserting content using the KeyDown and CommandExecuting events:

private void MainDemoControl_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
    if (e.KeyboardDevice.IsKeyToggled(Key.Insert))
    {
        this.isInsertKeyPressed = true;
    }
    else
    {
        this.isInsertKeyPressed = false;    
    }
}
private void radRichTextBox_CommandExecuting(object sender, CommandExecutingEventArgs e)
{
    if (e.Command is InsertTextCommand && this.isInsertKeyPressed)
    {
        this.radRichTextBox.Delete(false);
    }
}

Completed
Last Updated: 07 Feb 2020 11:34 by ADMIN
Release LIB 2020.1.210 (02/10/2020)

When the MEF catalog of RadRichTextBox is predefined, the PasteOptionsPopup is not automatically loaded and causes NullReferenceException in the presenter when the users press Ctrl or Esc.

Workaround: Add typeof(PasteOptionsPopup) to the catalog.

Unplanned
Last Updated: 20 Dec 2021 06:26 by ADMIN
Copy Content and paste in comment causes Stackoverflow Exception 
Completed
Last Updated: 07 Jan 2021 12:57 by ADMIN
Release R1 2021
Unlike the other font properties, text highlighting should never be extended to new content that is appended to a highlighted span.
Completed
Last Updated: 03 Dec 2020 12:28 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)
Importing a structured document tag (content control) that contains a data binding in its properties, which has no prefix mappings defined causes an exception during document layout.
Unplanned
Last Updated: 09 Jan 2020 14:49 by ADMIN
When a hyperlink uri contains a symbol that needs to be escaped (e.g. ')'), the exported document is corrupted.
Unplanned
Last Updated: 06 Jan 2020 12:22 by ADMIN
Use Destination styles does not appear in the paste options popup control. It only appears in the RadRibbonDropDownButton.
Unplanned
Last Updated: 02 May 2019 10:47 by ADMIN
Typing in Find dialog is not possible when having an ElementHost in a WinForms Windows to host a WPF User Control which contains the RadRichTextBox.
Unplanned
Last Updated: 30 Apr 2019 12:42 by ADMIN

If I setup the richtextbox content through the UI as shown in P1.png and try to restore it by pasting the generated html, I get instead P2.png. Expected to be the same. 

I attached the sample project. We're using the recommended settings to use the same html in telerik reports, but can't find the reference on your site, it used on the on this link http://docs.telerik.com/devtools/wpf/controls/radrichtextbox/import-export/features-import-export-settings#htmlformatprovider

 

Completed
Last Updated: 25 Aug 2021 15:24 by ADMIN
Release LIB 2021.2.830 (30 Aug 2021)
TableStyleGallery keeps RadDocument and RadRIchTextBox instances living due to a living event subscription to DocumentPosition PresentationChanged and StyleCollection StyleNameChanged
Completed
Last Updated: 07 Oct 2021 07:50 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
Setting IsPrimary to false should make styles disappear from the ribbon style gallery. In the current version this behavior gets broken as soon as styles are initially loaded.
Unplanned
Last Updated: 18 Apr 2019 09:32 by ADMIN

Finding text with regex for the last paragraph is not possible. This is caused by the fact that the search treats the last paragraph symbol as the last paragraph.

Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
Left indent and hanging indent of paragraph in a list are changed when the document is exported to HTML and then imported.

Steps to reproduce:
- Add text.
- Apply list over the text.
- Export the document to HTML
- Import the exported HTML
Expected: The paragraph in the list preserves its left indent (18 px) and hanging indent (18 px).
Actual: The paragraph in the list is with left indent 18 px and hanging indent 0 px.
Completed
Last Updated: 01 Apr 2015 11:23 by ADMIN
ADMIN
Created by: Todor
Comments: 1
Category: RichTextBox
Type: Bug Report
1

			
Unplanned
Last Updated: 12 Apr 2019 15:10 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: 05 Apr 2019 15:41 by ADMIN
The character properties applied on the last paragraph symbol for a paragraph in a list (e.g. font family), are exported to HTML for the whole paragraph which is in the list. 

As a notable side effect, when such HTML is imported, the default font size for a paragraph in a default bullet list changes to Symbol.

Regression: The bug is introduced in 2016_2_613.


Workaround: Change the styles to export as inline properties:
htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Inline;

but be aware that this may cause issues as described in the related RichTextBox: Character properties of the paragraph symbol are not exported to HTML when StyleExportMode is Inline
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
ADMIN
Created by: Mihail
Comments: 0
Category: RichTextBox
Type: Feature Request
1
When HTML is imported it may contain invalid images. In such case show the alternative text if there is such text.
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
The CSS styling for the "p" selector is not imported as a "NormalWeb" style. For example the following:

<style type="text/css">p {margin-top:0; margin-bottom:0;}</style>

should be imported as SpacingBefore and SpacingAfter set to 0 in Normal (Web) style.
Completed
Last Updated: 08 Jun 2021 10:19 by ADMIN
Release LIB 2021.2.608 (08 Jun 2021)
RadDocument instances are left in memory after editing and changing a document.
Unplanned
Last Updated: 01 Jun 2021 09:37 by ADMIN

The default styles are not copied when using the CreateDocumentFromSelection method.

Workaround: Manually copy the styles:

var document = radRichTextBox.Document.Selection.CreateDocumentFromSelection();
document.StyleRepository.Clear();
foreach (var item in radRichTextBox.Document.StyleRepository)
{
    var style = new StyleDefinition(item);
    document.StyleRepository.Add(style);
}