Completed
Last Updated: 06 Dec 2021 15:11 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)
When using the "Replace" function or the API, the formatting of the replaced word is lost.

Note: Using "Replace All" does not reset the formatting.

Steps to reproduce:
1. Enter the text "The quick brown fox" in a document
2. Apply formatting to the word "brown" (eg, make it bold)
3. Perform a find/replace on the word brown (eg, replace with blue) using "replace", not "replace all"
4. The formatting of the word is reset (it's no longer bold) 
Completed
Last Updated: 24 Nov 2021 14:23 by ADMIN
Release LIB 2021.3.1129 (29 Nov 2021)
The mail merge does not work with fields inside shapes' text
Unplanned
Last Updated: 19 Nov 2021 14:26 by ADMIN
As a result, the track changes are visualized but not functioning properly.
Unplanned
Last Updated: 27 Oct 2021 12:46 by ADMIN

Having two mention providers and using the second right after using the first one actually loads the source of the first provider.

Unplanned
Last Updated: 26 Oct 2021 09:17 by ADMIN
Code is executed after focusing the RadRichTextBox and before the previous control loses the focus.
Completed
Last Updated: 20 Oct 2021 13:36 by ADMIN
Release LIB 2021.3.1025 (25 Oct 2021)
KeyNotFoundException when loading an rtf file with missing fonts
Unplanned
Last Updated: 19 Oct 2021 06:53 by ADMIN
Created by: Morten
Comments: 0
Category: RichTextBox
Type: Feature Request
1
When using RadDocumentMerger to merge or append a document, and an undo group has been started, the following exception is thrown: System.InvalidOperationException: 'Clear Undo while in begin undo group'
Completed
Last Updated: 12 Oct 2021 14:31 by ADMIN
Release R3 2021 SP1
The exception is thrown while trying to measure a cell that has a floating image in it and should be transferred to the next page as the space available on the current one is not enough to be rendered.
Completed
Last Updated: 11 Oct 2021 10:38 by ADMIN
Release R3 2021
ADMIN
Created by: Telerik Admin
Comments: 1
Category: RichTextBox
Type: Feature Request
24
- There should be a formatting symbol for the character

- Pressing Ctrl+Shift+Space should insert the character (standard MS Word shortcut)

- Import from docx should be implemented

- The symbol should be treated as a separator between words when spell-checking
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.
Completed
Last Updated: 07 Oct 2021 06:27 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
ADMIN
Created by: Boby
Comments: 1
Category: RichTextBox
Type: Bug Report
3
Focus events (GotFocus, LostFocus) are raised inconsistently for RadRichTextBox, due to the internal translation of the focus to the Caret.

Scenarios:

1. Clicking inside the control, when the focus is already inside the control, triggers LostFocus, GotFocus, LostFocus, GotFocus events.

2. Switching internal editors (headers/footers) raises GotFocus and LostFocus.

3. If the control is inherited and OnGotFocus/OnLostFocus are overriden, they are never called (despite OnGotFocus one time in the beginning

The behavior is problematic, as this events are useful for custom validation scenarios.
Completed
Last Updated: 01 Oct 2021 14:34 by ADMIN
Release LIB 2021.3.1004 (04 Oct 2021)
"http://" prefix is automatically added by the Insert Hyperlink Dialog when the provided URI is to local path or mapped drive, e.g. "Z:\temp".

Workaround 1: Set HyperlinkPattern to something that matches file paths, e.g.:
(this.radRichTextBox.InsertHyperlinkDialog as RadInsertHyperlinkDialog).HyperlinkPattern = ".*";

Workaround 2: Insert such paths with the "file://" prefix.
Completed
Last Updated: 01 Oct 2021 13:59 by ADMIN
Release LIB 2021.3.1004 (04 Oct 2021)
The hyperlinks are not exported properly to DOCX, RTF and HTML format if the HTTP:// prefix is not added in the address when they were created.

Steps to reproduce:
1. Open RadRichTextBox and click on Insert tab -> Hyperlink
2. In address field type: www.telerik.com
3. Export the file to DOCX, RTF or HTML format
4. Open the exported file and click on the hyperlink
Observed result: The hyperlink is pointing to a local resource instead of opening the URL.

As a workaround, the regex used to match a partial hyperlink could be further extended. If this regex succeeds in matching a partial hyperlink the HTTP:// prefix will be automatically added to the partial hyperlink. Here is example of how the regex should be accessed:
(this.radRichTextBox.InsertHyperlinkDialog as RadInsertHyperlinkDialog).HyperlinkPattern
Unplanned
Last Updated: 30 Sep 2021 11:07 by ADMIN

Exception when importing a document with an empty table.

Workaround: Remove the empty tables:

DocxFormatProvider provider = new DocxFormatProvider();
var doc = provider.Import(File.ReadAllBytes(@"C:\Users\mpc\Downloads\22-51.docx"));

foreach (var section in doc.Sections)
{
    var tables = section.EnumerateChildrenOfType<Table>();
    foreach (var table in tables.ToList())
    {
        if (table.Rows.Count == 0)
        {
            section.Blocks.Remove(table);
        }
    }
}
radRichTextBox.Document = doc;

Completed
Last Updated: 27 Sep 2021 08:00 by ADMIN
Release LIB 2021.3.927 (27 Sep 2021)
Moving focus away causes 2 lost focus events - one from the caret and one from document presenter. Both of them bubble to the parent RadRichTextBox, causing an inconsistent behavior.
Completed
Last Updated: 15 Sep 2021 12:59 by ADMIN
Release R3 2021
Created by: Martin
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Add support for text containers in Shapes. Including, text formatting, editing, and placement options.
Unplanned
Last Updated: 10 Sep 2021 07:13 by ADMIN

Hello,

 

In the attached example, applying character formatting to a selection that ends between two annotation ends and undoing the formatting action does not revert the annotations to the exact position as they were before the formatting was applied.

Applying formatting twice and undoing twice crashes the editor because the second undo command inserts unpaired annotations (as it operates on a document state different than the expected one).

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: 24 Aug 2021 14:15 by ADMIN
Release LIB 2021.2.823 (23 Aug 2021)
When there is a FloatingDrawing (image or shape) selected and you right click somewhere outside it, it does not get deselected and the context menu is wrong.
Completed
Last Updated: 24 Aug 2021 14:13 by ADMIN
Release LIB 2021.2.830 (30 Aug 2021)
Watermark position is not correct when using multiline text