Unplanned
Last Updated: 15 Jan 2024 13:46 by Abhinav
In Narrator scan mode RichTextBox is not accessible.
Unplanned
Last Updated: 15 Jan 2024 08:09 by Martin Ivanov
The character used to measure the non breaking spaces (the degree sign) is causing the space to render with a width bigger than the standard space. 
Unplanned
Last Updated: 11 Jan 2024 13:19 by Stenly
NullReferenceException is raised when trying to display a document.
Unplanned
Last Updated: 11 Jan 2024 10:56 by Ronald

PdfFormatProvider creates an invalid PDF document. 

Workaround:

RadDocument radDocument = null;
XamlFormatProvider xamlformatProvider = new XamlFormatProvider();
using (FileStream inputStream = new FileStream("input.xaml", FileMode.Open))
{
    Console.WriteLine("reading input file");
    radDocument = xamlformatProvider.Import(inputStream);
}

var provider = new Telerik.Windows.Documents.FormatProviders.OpenXml.Docx.DocxFormatProvider();
var bytes = provider.Export(radDocument);

var provider2 = new Telerik.Windows.Documents.Flow.FormatProviders.Docx.DocxFormatProvider();
var flowDoc = provider2.Import(bytes);

var provider3 = new Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider();

using (Stream output = File.OpenWrite(@"output.pdf"))
{
    Console.WriteLine("writing output file");
    provider3.Export(flowDoc, output);
}

Console.WriteLine("done...");
Console.ReadKey();

 

Unplanned
Last Updated: 10 Jan 2024 13:27 by Luke

The paste options popup stays visible when the window is deactivated

Workaround: 

private void MainWindow_Deactivated(object sender, EventArgs e)
{
    var popup = radRichTextBox.PasteOptionsPopup as PasteOptionsPopup;
    popup.Close();
}
Unplanned
Last Updated: 08 Jan 2024 12:27 by Swapnil
Selection is not correct after calling the MeasureAndArrangeInDefaultSize and using the flow layout mode. This happens when the document is already set to the RichTextBox.
Unplanned
Last Updated: 04 Jan 2024 16:18 by ADMIN

Please see the attached video.

I've managed to fix this by altering the source code of  method ParagraphLayoutBox.MeasureOverride and hope it doesn't cause other problems.

Unplanned
Last Updated: 19 Dec 2023 07:16 by Swapnil
Zooming out causes some table borders to disappear.
Unplanned
Last Updated: 22 Nov 2023 07:56 by Alexey
When scrolling the caret moves to the upper left corner of the page.
Unplanned
Last Updated: 22 Nov 2023 07:10 by Alexey
The control scrolls to caret position when switching the "Show/Hide Formatting Symbols" button.
Unplanned
Last Updated: 28 Sep 2023 10:38 by Caesar
Undo of action with lists in not recovering the original state of the document.
Unplanned
Last Updated: 04 Sep 2023 13:33 by Caesar
 Invalid result when inserting row to a table with a merged cells.
Unplanned
Last Updated: 28 Aug 2023 13:05 by Caesar
Incorrect list item sequence when adding new items to existing list. 
Unplanned
Last Updated: 25 Aug 2023 09:37 by Vladimir
Annotation markers can be left after deleting when annotation start and annotation end are in different selection ranges. 
Unplanned
Last Updated: 24 Aug 2023 06:36 by ADMIN

The non-breaking space breaks the word if a comma character is presented in the word. For example, the following text should be treated as one word - 10,0 % but it is separated into to words - 10,0 and %.

The issue can be observed when the word should break on the next line. 

Unplanned
Last Updated: 07 Aug 2023 05:58 by ADMIN
The text is not committed and is still in edit mode when the control loses focus. The partial commit of content is not working as well.
Unplanned
Last Updated: 06 Jul 2023 15:05 by Vladimir
When applying a style to a document containing a list, saving it to a .rtf file and loading it back, the style is not applied to the list. 
Unplanned
Last Updated: 16 Jun 2023 08:24 by Stanley
When the table is split into 2 pages and the remaining part is smaller than the header it is not visualized.
Unplanned
Last Updated: 12 Jun 2023 06:47 by ADMIN
Text containing mixed Right-to-Left and Left-to-Right parts are visualized incorrectly - some of the punctuation marks swap their places.

Partial workaround: Use RadRichTextBox's TextRenderingMode = TextBlockWithPropertyCaching. This mode also has problems, but it works in some cases.
Unplanned
Last Updated: 06 Jun 2023 06:03 by Deltaohm
Exporting field with code ending with curly bracket trims it.