Unplanned
Last Updated: 31 Jan 2024 14:43 by Stenly
Clicking at the end of the line does not select the last word of the line, but selects the first word of the next line.
Unplanned
Last Updated: 26 Jan 2024 09:24 by Oliver
There are some special characters in the Polish alphabet, which are inserted with key combinations - AltGr + E should insert "ę", Alt Gr + L should insert "ł". These combinations are overridden in RichTextBox because are triggering default commands in Silverlight.
 

Workaround: Attach to the PreviewEditorKeyDown event:
  this.radRichTextBox.PreviewEditorKeyDown += (sender, args) =>
     {
         if (Keyboard.Modifiers.HasFlag(ModifierKeys.Alt) && Keyboard.Modifiers.HasFlag(ModifierKeys.Control) && args.Key == Key.E)
         {
             args.SuppressDefaultAction = true;
             args.OriginalArgs.Handled = true;
             this.radRichTextBox.Insert("€");
         }
     };

Completed
Last Updated: 25 Jan 2024 19:04 by ADMIN
Release LIB 2023.3.1315 (15 Jan 2024)
Shift + left arrow navigation is wrong in a table cell. Compare this to MS Word and make sure we are behaving the same way. 
Completed
Last Updated: 25 Jan 2024 19:04 by ADMIN
Release LIB 2023.3.1315 (15 Jan 2024)
RichTextBox: Memory Leak in RichTextBox due to improper (event subscription for timer) code in Telerik.Windows.Documents.Utils.DelayedExecution. 
Completed
Last Updated: 25 Jan 2024 19:04 by ADMIN
Release LIB 2023.3.1315 (15 Jan 2024)
Created by: Caesar
Comments: 0
Category: RichTextBox
Type: Bug Report
0
The lists text is missing from TOC items.
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: 09 Jan 2024 07:34 by Caesar
 Performing an undo operation on a content control that cannot be deleted causes wrong behavior.
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: 02 Jan 2024 11:48 by Martin Ivanov
Currently, the document model reads the scene3d tag of the shape drawing, but RadRichTextBox doesn't support rendering this information. 
Completed
Last Updated: 19 Dec 2023 10:50 by ADMIN
Release LIB 2022.2.704 (04 Jul 2022)
Unable to place the cursor before a single vertical line character at the start of the line (ex. "I", "i", "l").
Unplanned
Last Updated: 19 Dec 2023 07:16 by Swapnil
Zooming out causes some table borders to disappear.
Completed
Last Updated: 18 Dec 2023 06:53 by ADMIN
Release LIB 2023.3.1218 (18 Dec 2023)
Setting the document to null causes an exception.
Completed
Last Updated: 18 Dec 2023 06:53 by ADMIN
Release LIB 2023.3.1218 (18 Dec 2023)
 Table Properties Dialog. Can't see the number edit field in the Windows 11 Theme.
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.
Completed
Last Updated: 27 Nov 2023 06:22 by ADMIN
Release LIB 2023.3.1127 (27 Nov 2023)
The ListId is not removed when it is set inside another style.