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.
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: 27 Dec 2022 15:40 by ADMIN
ADMIN
Created by: Boby
Comments: 2
Category: RichTextBox
Type: Bug Report
6
Images with resolution higher than the image size currently visible in the document, are printed with low quality, as if the smaller image is scaled up.

The same is observed when an image is placed in header/footer and the document is zoomed in. Then the image should be rendered with better quality if available, but currently it isn't.
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.
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.
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
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
Unplanned
Last Updated: 31 Oct 2022 12:54 by Caesar

DeleteAnnotationRange fails to execute when the content is uneditable annotation. For example: PermissionRange with a checkbox content control inside.

A possible workaround would be to manually delete the annotation range from the document element tree:

var rangeEnd = rangeStart.End;
var endParent = rangeEnd.Parent;
if (endParent != null)
{
    endParent.Children.Remove(rangeEnd);
}

var parent = rangeStart.Parent;
if (parent != null)
{
    parent.Children.Remove(rangeStart);
}

this.radRichTextBox.UpdateEditorLayout();

Unplanned
Last Updated: 12 Oct 2022 09:35 by Matthias
The exception is thrown while trying to load the image from the URI.
Unplanned
Last Updated: 05 Oct 2022 20:50 by Adam
Setting the margin of the DocumentPrintLayoutPresenter breaks the selection. 
Unplanned
Last Updated: 03 Oct 2022 08:31 by ADMIN
The text is cut off at the end of characters when the impact font is used.