Unplanned
Last Updated: 15 Mar 2023 10:26 by Caesar
When spanning content control on two pages, the border of the content control is displayed abnormally
Unplanned
Last Updated: 15 Mar 2023 10:20 by Caesar
After inserting a line break in front, the border of the content control does not appear correctly
Completed
Last Updated: 22 May 2023 10:52 by ADMIN
Release LIB 2023.1.522 (22 May 2023)
Using keyboard selection over several table rows is inconsistent. If we select the table cells until the end of the row and continue to press Shift+Arrow keys on the keyboard, the table cell selection should continue on the next row under the same cell from where the selection started. Currently, the selection on the next row starts from the beginning of the row and that also shifts the selection of the first row to unselect the already selected cells and select the cells from the row start.
Completed
Last Updated: 22 May 2023 10:51 by ADMIN
Release LIB 2023.1.522 (22 May 2023)

Expanding the table selection with the keyboard leaves the caret behind the selection's edges. After we pass the current cell content, the selection is automatically broadened over the next complete cell, but if we continue to press Shift+Arrow, it takes keystrokes = length of content in the cell + 1 to expand the selection to its next cell, though the selection highlights are already covering that cell.

There is a workaround: you will need to subscribe to the SelectionChanged event and use this code snippet for the event handler:

private void SelectionChanged(object sender, EventArgs e)
{
    var selection = this.radRichTextBox.Document.Selection;
    var caretPosition = this.radRichTextBox.Document.CaretPosition;

    if (selection.IsEmpty)
    {
        return;
    }

    if (selection.Ranges.Last.IsReversed)
    {
        caretPosition.MoveToPosition(selection.Ranges.First.StartPosition);
    }
    else
    {
        caretPosition.MoveToPosition(selection.Ranges.Last.EndPosition);
    }
}

Inside it, we move the caret to the selection's edges.

Unplanned
Last Updated: 08 Mar 2023 10:07 by Caesar
When there is a table with permission range outside the table (for instance the line above the table) and the user deletes it, then performs undo>>redo>>undo operation, then this leads to a NullReferenceException.
Completed
Last Updated: 22 May 2023 10:51 by ADMIN
Release LIB 2023.1.522 (22 May 2023)
Cursor jumps to the previous cell when one enters Korean text in a cell.
Unplanned
Last Updated: 20 Feb 2023 07:25 by Naval
An extra line is added when an HTML document with <br> tag inside a <div> is imported.
Completed
Last Updated: 14 Feb 2023 11:36 by ADMIN
Release LIB 2023.1.220 (20 Feb 2023)
When using Crystal/Green/Material/Office2016/Windows11 Theme, the header text of PasteOptionsPicker is not localized.
Unplanned
Last Updated: 03 Feb 2023 07:32 by cw
InvalidOperationException: “Invalid drawing color type.” when importing a color with a null value. 
Unplanned
Last Updated: 01 Feb 2023 12:27 by Vladislav
If you start a selection from the end of a line and go back down (at least one line) and go back to the initial position and release the mouse button, then if you press any of the keyboard arrow keys you will see that the caret's new position is shifted with one line downwards. This is reproducible inside the R1 2023 QSF Examples. You can check the attached video for a demonstration.
Unplanned
Last Updated: 19 Jan 2023 14:59 by Stefan
Created by: Stefan
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Simulate selection when caret is inside a field just like in MS Word.
Unplanned
Last Updated: 12 Jan 2023 13:38 by Caesar
When importing a DOCX file, the SdtType of  Rich Text Content Controls is not recognized correctly
Unplanned
Last Updated: 12 Jan 2023 10:08 by ADMIN
Unplanned
Last Updated: 10 Jan 2023 10:17 by Caesar
The ShowPlaceholder property of Content Control is not handled correctly when importing docx files.
Unplanned
Last Updated: 10 Jan 2023 09:36 by Morten
In RichTextBox when IsTrackChangesEnabled = true, in a numbered list, after indenting and unindenting a line, the numbering of the list is incorrect.
Completed
Last Updated: 06 Feb 2023 07:27 by ADMIN
Release LIB 2023.1.206 (6 Feb 2023)
Current date in Date Picker Content Control cannot be selected.
Unplanned
Last Updated: 09 Jan 2023 08:24 by ADMIN

Insert a Plain Text Content Control to current document.

Enter a character in the Content Control.

Undo and then Redo.

The  Content Control remains in placeholder mode, which is not supposed to.

Unplanned
Last Updated: 05 Jan 2023 13:06 by Caesar
Content Control Properties 'Use a style to format text typed into the empty control' option lost after XAML Export-Import
Unplanned
Last Updated: 04 Jan 2023 14:44 by Trevor
Created by: Trevor
Comments: 0
Category: RichTextBox
Type: Bug Report
0

When a new line is placed right after a nbsp, the new line is ignored in the layout. This can be reproduced by importing the following HTML:

First&nbsp;<br/>Second

Unplanned
Last Updated: 20 Apr 2023 07:51 by ADMIN
The ShowPlaceholder property of Content Control is not handled correctly when importing .docx files.