Unplanned
Last Updated: 30 Dec 2022 14:40 by Caesar
When importing Run fonts (<rFonts>) the East Asian Font attribute (<eastAsia>) is not supported.
Unplanned
Last Updated: 27 Dec 2022 12:46 by Caesar
When there is Plain Text Content Control in a table and the table is deleted from the context menu and then the operation is undone, then the Properties dialog for the Plain Text Content Control cannot be displayed.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
When exporting Run fonts (<rFonts>) the East Asian Font attribute (<eastAsia>) is not supported.
Unplanned
Last Updated: 22 Dec 2022 09:47 by Choung
Created by: Choung
Comments: 0
Category: RichTextBox
Type: Bug Report
0

In specific cases, the box-drawing characters are not properly aligned and connected.

Observed:

Unplanned
Last Updated: 22 Dec 2022 09:00 by Swapnil
When you start selecting from a line-start upwards over an empty paragraph and then down to the initial position does not clear the selection.
Completed
Last Updated: 22 May 2023 10:52 by ADMIN
Release LIB 2023.1.522 (22 May 2023)
Using advanced selection at line-start upwards select the first word.
Unplanned
Last Updated: 21 Dec 2022 13:07 by Caesar
Can't open the popup of a Content Control, if there is another Content Control right after it
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
Using advanced selection over a line break also selects the first word on the following line.
Completed
Last Updated: 15 Dec 2023 11:44 by ADMIN
Release R3 2023
RadRichtTextBox: Sometimes Double mouse clicks will not execute when clicking into the middle of a letter.
Unplanned
Last Updated: 15 Dec 2022 14:09 by BERND
The "_x" string in a document variable value causes an infinite loop. 
Unplanned
Last Updated: 13 Dec 2022 12:22 by Stefan
Created by: Stefan
Comments: 0
Category: RichTextBox
Type: Bug Report
0

1 Open RadRichTextBox and press Windows + . to to show the emoji box. 

2 Choose the emoji and press backspace to remove it.

Actual behavior: When you press the backspace to remove the emoji, a square is left

Expected behavior: When you press the backspace the emoji should be deleted.

Unplanned
Last Updated: 13 Dec 2022 07:47 by ADMIN
When one inserts emoji with Ctrl + . and searches, additional characters are added to the RichTextBox.
Unplanned
Last Updated: 08 Dec 2022 12:43 by Caesar

 The AddParagraphToSelection method adds the first row of a table when it is the element after the paragraph. 

To workaround this manually select the paragraph:

var para = caret.GetCurrentParagraph();
DocumentPosition pos = new DocumentPosition(doc);
pos.MoveToDocumentElementStart(para);
selection.AddSelectionStart(pos); 
pos.MoveToDocumentElementEnd(para); 
selection.AddSelectionEnd(pos);

 this.radRichTextBox.Delete(false);

Unplanned
Last Updated: 08 Dec 2022 09:10 by TC
InvalidCastException when importing documents having shapes and images that are grouped
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release LIB 2022.3.1219 (19 Dec 2022)
Clicking over an already selected word is not clearing the selection.
Unplanned
Last Updated: 05 Dec 2022 09:43 by Stefano
Created by: Stefano
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Citations should be exported  as blockquotes in HTML
Completed
Last Updated: 14 May 2024 15:37 by ADMIN
Release 2024.2.514 (2024 Q2)
Typing and then deleting all in fast succession sometimes fails while using Microsoft Japanese IME.
Duplicated
Last Updated: 30 Nov 2022 14:08 by ADMIN
Memory leak in RadRichTextBox when executing on a new thread
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1
Created by: Caesar
Comments: 2
Category: RichTextBox
Type: Bug Report
0

In MS Word,create a new docx file,  insert a table, select the whole table, insert a bookmark.

Open the docx file with RadRichTextBox, the bookmark is missing.

This is because the bookmarkStart is in the first tc, while the bookmarkEnd is after the last tr, TableImporter failed to import the bookmarkEnd.

 

Here is my fix.

Unplanned
Last Updated: 10 Nov 2022 15:32 by Caesar
The MS Word has a context menu option Remove Content Control which is missing in the RadRichTextBox UI.