Unplanned
Last Updated: 04 Sep 2023 13:33 by Caesar
 Invalid result when inserting row to a table with a merged cells.
Completed
Last Updated: 04 Oct 2023 15:24 by ADMIN
Release R3 2023
Shift + Left arrow navigation selects the entire word instead of the previous letter when inside a table. 
Unplanned
Last Updated: 01 Mar 2024 10:28 by ADMIN
Nested tables with empty cells are not correctly imported. 
Unplanned
Last Updated: 28 Sep 2023 10:38 by Caesar
Undo of action with lists in not recovering the original state of the document.
Declined
Last Updated: 08 Jun 2017 06:47 by ADMIN
The spellchecker does not recognize words with non-breaking spaces between them as separate.
A workaround when pasting text into the RadRichTextBox is to subscribe to the CommandExecuting event of the control, get the paste text from the clipboard and replace all non-brekaing spaces with spaces.

private void editor_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
        {
            if (e.Command is PasteCommand)
            {
                var pasteText = Clipboard.GetDataObject().GetData("HTML Format") as string;
                if (pasteText != null)
                {
                    pasteText=  pasteText.Replace("&nbsp", " ").Replace(' ',' ');
                    var originalDataObject = Clipboard.GetDataObject();
                    DataObject dataObject = new DataObject();
                    foreach (string format in originalDataObject.GetFormats())
                    {
                        dataObject.SetData(format, originalDataObject.GetData(format));
                    }
                    dataObject.SetData("HTML Format", pasteText);
                    Clipboard.SetDataObject(dataObject);
                }               
            }
        }
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
When a continuous section break is inserted on a page containing an image and with a watermark applied, the watermark is shown on top of the other document elements. The issue is observed only on the page with the section break.
Declined
Last Updated: 30 Jan 2017 11:58 by ADMIN
A NullReference exception is thrown when the content of a MS Outlook mail is copy/pasted into RadRichTextBox. 

This is reproducible in Paged LayoutMode.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
Inserting a page break inside a table is currently not supported (the feature request is logged at https://feedback.telerik.com/Project/143/Feedback/Details/211108). Therefore, the Page Break button inside the Insert tab of the ribbon should be disabled when the caret is positioned inside a table.

Workaround: Track the position of the caret and when the latter goes into a table, set the Enabled property of InsertPageBreakCommand to false.
Completed
Last Updated: 26 Mar 2014 10:01 by ADMIN
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Expose an API allowing easy customization of the layer.
Unplanned
Last Updated: 31 Oct 2018 08:07 by ADMIN
Currently, CopyHyperlink command (Context menu over hyperlink -> Copy Hyperlink) puts hyperlink text in plain text format in the clipboard. Instead, it should put the URI. This way when the user pastes in a plaint text editor, they will get the URI.

Workaround: The user could copy the text from the Edit Hyperlink dialog instead. 
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
Currently, when the users perform replace, and there are no more matches which should be replaced, the "The searched text was not found" message is shown. Add functionality to say that there are no more matches instead of saying that the text is not found.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
When an RTF document contains table inside table in the header or in the footer, the document cannot be imported due to NullReferenceException. In the case of RadRichTextBox the exception is handled, but it's not when RtfFormatProvider is used directly.

The bug is regression in 2016 R3.
Declined
Last Updated: 28 Nov 2014 14:02 by ADMIN
ADMIN
Created by: Alex
Comments: 1
Category: RichTextBox
Type: Bug Report
0
The issue is reproduced with Marathi IME. Type some letters, press and release shift, then press space. The result is that the current IME text is duplicated. 
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)
 InvalidOperationException: Parent shape is not measured when loading a page with shapes
Unplanned
Last Updated: 31 Oct 2018 08:07 by ADMIN
ADMIN
Created by: Petya
Comments: 0
Category: RichTextBox
Type: Feature Request
0
When document model is used in multi-threaded scenario, all image sources need to be frozen. Expose a method that does that out of the box.

Workaround: Solution with the public API available is in the attached freezeImagesInRadDocument.zip. 
Unplanned
Last Updated: 18 Aug 2023 07:48 by Thomas
Created by: Thomas
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Add support for non-breaking hyphen.
Completed
Last Updated: 07 Nov 2023 12:08 by ADMIN
Release R3 2023 SP1
The AnnotationRange is lost during the export of a DocumentFragment created from the current selection.
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.
Declined
Last Updated: 06 Aug 2024 07:01 by ADMIN

The TableCellProperty.Padding property of the "TableNormal" StyleDefinition doesn't take effect in the UI. The same is valid for the TableProperties.CellPadding property.

To work this around, you can manually set the Padding property of all TableCell elements in the RadDocument.

 var cells = radDocument.EnumerateChildrenOfType<Telerik.Windows.Documents.Model.TableCell>();
 foreach (var cell in cells)
 {
     cell.Padding = new Padding(10);
 }