Unplanned
Last Updated: 22 Feb 2024 08:51 by ADMIN
When you have a single PlainTextControl in the document you can insert another content controls in it. 
Unplanned
Last Updated: 21 Feb 2024 09:19 by Caesar
Pasting text with multiple paragraphs into a plain text content control is still possible when IsMultiline is set to false. 
Unplanned
Last Updated: 16 Feb 2024 10:15 by Jason
Created by: Jason
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Export Emojis and special characters to PDF.
Completed
Last Updated: 11 Mar 2024 07:38 by ADMIN
Release 2024.1.228 (Preview)
Null reference exception when adding shapes and using the AddShapeTextBoxCommand.
Unplanned
Last Updated: 13 Feb 2024 06:44 by Jason
Cut and Copy operations are disabled in a shape with text.
Unplanned
Last Updated: 13 Feb 2024 06:33 by Jason
Created by: Jason
Comments: 0
Category: RichTextBox
Type: Bug Report
1
Shape text is not exported to PDF.
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)
Shapes are not pasted at the mouse position. 
Completed
Last Updated: 13 Mar 2024 09:44 by ADMIN
Release 2024.1.219 (Preview)
Provide API that allows setting the width of the caret.
Completed
Last Updated: 14 May 2024 15:37 by ADMIN
Release 2024.2.514 (2024 Q2)

HtmlFormatProvider: Exception when importing a table that has only width set.  In this case, we are trying to measure some elements with float.NaN. 

Workaround: Use the HtmlFormatProvider from the Document Processing library. 

 
Unplanned
Last Updated: 06 Feb 2024 15:16 by Stenly
Add support for Alt property when importing/exporting an image using the DocxFormatProvider.
Unplanned
Last Updated: 02 Feb 2024 13:16 by Martin Ivanov
Currently, the CheckBox SDT doesn't support editing, compared to MS Word where you can change its font and other settings. Add support for this in RadRichTextBox.
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: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Improve the speed of the delete operation when deleting content in large documents.
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: 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.