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);
    }
}

Unplanned
Last Updated: 14 Jan 2022 07:33 by ADMIN
A complex table with merged cells cannot be imported. The table contains rows with no cells because of the merge.
Unplanned
Last Updated: 20 Dec 2021 06:26 by ADMIN
Copy Content and paste in comment causes Stackoverflow Exception 
Completed
Last Updated: 17 Dec 2021 14:01 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)
Spans containing complex script text are styled using the iCs and bCs elements for font style and font-weight. DocxFormatProvider currently doesn't export them, leading to incorrect styling when the document is opened in MS Word.
Completed
Last Updated: 16 Dec 2021 15:47 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)

The issue is observed when the added table is preceded by a paragraph with a font size different from the default one. As the issue is caused by a broken mouse capture, the following workaround can be employed:

someRandomFrameworkElement.CaptureMouse();

someRandomFrameworkElement.ReleaseMouseCapture();

Completed
Last Updated: 16 Dec 2021 14:38 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)

When a whole paragraph is selected and the Set Numbering Value command is executed, the numbering value of the next paragraph is changed instead of the current one.

Workaround: Clear the selection prior to executing the command:
private void radRichTextBox_CommandExecuting(object sender, CommandExecutingEventArgs e)
{
    if (e.Command is ShowSetNumberingValueDialogCommand)
    {
        this.radRichTextBox.Document.CaretPosition.MoveToPosition(this.radRichTextBox.Document.Selection.Ranges.First.StartPosition);
    }
}

Unplanned
Last Updated: 15 Dec 2021 16:56 by ADMIN
ADMIN
Created by: Petya
Comments: 7
Category: RichTextBox
Type: Feature Request
18
Form fields are the legacy way to insert an editable controls in a document (text boxes, checkboxes, dropdowns) by using the FORMTEXT, FORMCHECKBOX and FORMDROPDOWN fields.

This includes the legacy Frames (described in OOXML with 'framePr' element).

Do not confuse with content controls (structured document tags) (see http://feedback.telerik.com/Project/143/Feedback/Details/113730 ) and with ActiveX controls.
Completed
Last Updated: 14 Dec 2021 17:12 by ADMIN
Release R1 2022
When a symbol is inserted, the font family of RichTextBox is set to the symbol's font family.


Workaround: Create a custom InsertSymbolDialog. The font family could be persisted in the Show() method of the new dialog and reset when the dialog is closing. Attached is a sample project demonstrating the workaround.
Completed
Last Updated: 08 Dec 2021 10:56 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)
RichTextBox: Expose a way so one can access the text of the shape via the public API.
Completed
Last Updated: 07 Dec 2021 13:44 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)
Created by: Imran
Comments: 0
Category: RichTextBox
Type: Bug Report
1
Let's have a document with a paragraph with only one span which contains a single space character and a table below that paragraph. Position the caret right after the space in the paragraph and press the delete key. The result is that the layout stops updating i.e. clicking anywhere does not visually move the caret, writing something shows as only spaces are added. If the document is forcefully refreshed (by scrolling down and then up again) the changes are reflected.
Completed
Last Updated: 07 Dec 2021 10:23 by ADMIN
Release R3 2020
All bullet list levels are exported to HTML with list-style-type:disc. Instead, they should be exported with list-style-type:disc, list-style-type: circle;, and list-style-type: square; depending on the level - Level 1,4,7 are with disc, level 2,5,8 are with circle, and level 3,6,9 are with square for the default bullet list type.

Note: There are more problems with the HTML export/import roundtrip in this use case: 

- indents FirstLineIndent, RightIndent, Left are set locally - this prevent the expected changing of indent when changing the list level.

- formatting of the bullet (font for example) is set to the paragraph.

Steps to reproduce:
- Add bullet list with three levels.
- Export to HTML.
Expected: The browser show the list preserving the bullet styles.
Actual: The browser visualizes the list with different bullet styles.
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