Unplanned
Last Updated: 08 Jul 2021 11:05 by Andrii
Unicode hex character code "​" is not rendered correctly 
Unplanned
Last Updated: 02 Jul 2021 10:05 by Emin Sadigov
A NullReferenceException is thrown when a new picture is inserted in a document with enabled tracked changes. Sometimes it might take two or three images to be inserted for the exception to occur once the document is open. The original document should contain image >> text >> image >> text.
Unplanned
Last Updated: 30 Jun 2021 08:27 by ADMIN
When the header contains fields whose result value length increases through the pages, the height of the first measured header is respected. This could result in missing content on the following pages. An example of such a field is the PAGE field whose value initially is a single-digit but can increase.
Unplanned
Last Updated: 01 Jun 2021 09:37 by ADMIN

The default styles are not copied when using the CreateDocumentFromSelection method.

Workaround: Manually copy the styles:

var document = radRichTextBox.Document.Selection.CreateDocumentFromSelection();
document.StyleRepository.Clear();
foreach (var item in radRichTextBox.Document.StyleRepository)
{
    var style = new StyleDefinition(item);
    document.StyleRepository.Add(style);
}

Unplanned
Last Updated: 27 May 2021 09:15 by ADMIN
When you access apps using the RichTextBox control through a Web Client the keyboard input is not consistent. This is caused by WPF TextBox (which is used internally by our Caret) not always receiving PreviewKeyDown events.

Such a case is when the user holds the Shift key and types capital letters. The result is not displayed until the user pushes a key for which the PreviewKeyDown event is triggered.
Unplanned
Last Updated: 18 May 2021 13:24 by ADMIN
RadRichTextBox doesn't render a border that is not locally defined. In this case, the corresponding border from the applied table style should be used.
Unplanned
Last Updated: 17 May 2021 13:01 by ADMIN
Created by: Petar
Comments: 0
Category: RichTextBox
Type: Bug Report
0

Currently, there is a DocumentHistory property IsEnabled indicating whether the history for the RadDocument is enabled. This property is not working and history cannot be disabled.

Workaround:

Use DocumentHistory Clear() method by attaching to editor's CommandExecuted event.

 

        private void Editor_CommandExecuted(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutedEventArgs e)
        {
            editor.Document.History.Clear();
        }

 

Unplanned
Last Updated: 17 May 2021 08:23 by ADMIN
Inner row and cell borders are not respected when importing table with specific borders
Unplanned
Last Updated: 19 Apr 2021 15:37 by ADMIN
When asynchronous text insertion is enabled a wrong text position is occasionally observed.

A possible workaround: Create a custom Caret (check CustomCaret SDK example) and set its EnableAsynchronousTextInsertion property to false.
Unplanned
Last Updated: 16 Apr 2021 14:33 by ADMIN
Keys in Traditional Chinese On-screen Keyboard are duplicated.
Unplanned
Last Updated: 05 Apr 2021 10:04 by ADMIN
Wrong indexing when export the list override index ("\ls") THe index should start from 1 not from 2 or 3
Unplanned
Last Updated: 28 Mar 2021 07:21 by ADMIN

When the Track Changes is On and we try to change the style it applies the first time but the second try throws an exception and the style doesn't apply: System.ArgumentNullException: 'Value cannot be null. Parameter name: owner'.

1. Add new text "TEST".
2. Select the text and set a new style "Heading 2", then "Heading 1".
Observed: Heading 1 doesn`t appear.

Unplanned
Last Updated: 28 Mar 2021 06:55 by ADMIN

When the Track Changes is activated, a Hyperlink is inserted to a text and we try to reject changes the rejection is not applied correctly.

The result:

Unplanned
Last Updated: 08 Mar 2021 13:26 by ADMIN

When "rFonts" is set in docDefaults:

<w:styles>
	<w:docDefaults>
		<w:rPrDefault>
			<w:rPr>
				<w:rFonts w:ascii="Verdana" w:eastAsia="Times New Roman" w:hAnsi="Verdana" w:cs="Verdana"/>
				...
			</w:rPr>
		</w:rPrDefault>

and partially in the local run properties:

<w:r>
	<w:rPr>
		<w:rFonts w:cs="Times New Roman"/>
		...
	</w:rPr>
	<w:t>Text</w:t>
</w:r>

A wrong font is applied.

ExpectedVerdana
Actual: Times New Roman

Unplanned
Last Updated: 05 Mar 2021 16:49 by ADMIN

When inserting a content control (structured document tag) into an empty RadDocument using one of the overloads of the InsertStructuredDocumentTag method accessible from RadRichTextBox and RadDocumentEditor, a NullReferenceException is thrown.

Workaround: Invoke the EnsureDocumentMeasuredAndArranged method before inserting the content control:

document.EnsureDocumentMeasuredAndArranged();

RadDocumentEditor editor = new RadDocumentEditor(document);
editor.InsertStructuredDocumentTag(SdtType.CheckBox);

Unplanned
Last Updated: 05 Mar 2021 05:56 by ADMIN
The span's bounding rectangle is not measured correctly, which results in creating a visual text element with smaller height than needed. Resizing the table cell does not affect the scenario as expected.
Unplanned
Last Updated: 01 Mar 2021 15:54 by ADMIN
Created by: Oksana
Comments: 0
Category: RichTextBox
Type: Bug Report
0

Bookmarks are not imported and missing from a specific document scenario.

Workaround: Import and then export the document using the WordsProcessing library and then open it with the editor.

Unplanned
Last Updated: 25 Feb 2021 08:30 by ADMIN
One is unable to add tabs to a list with a specific level.
Unplanned
Last Updated: 09 Feb 2021 08:50 by ADMIN
Binding errors from RadRibbonGallery in the TableStylesGallery are outputted in the Output window in Visual Studio, because of binding to the StyleDefinitions and CurrenSelectedStyle properties of the gallery's view model.
Unplanned
Last Updated: 08 Feb 2021 06:49 by ADMIN
Text is cut off and border size is different when DPI scaling is other than 100%. The caret is not placed correctly as well.