Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
ADMIN
Created by: Boby
Comments: 0
Category: RichTextBox
Type: Feature Request
4
Add "Show Grid Lines" command. The command should visualize all table borders, including the invisible ones.
Completed
Last Updated: 11 Aug 2016 14:04 by Iva
The desired width of the tables is not set to 100 percent. Instead, the width of each column is set to the fixed value in dxa.
Unplanned
Last Updated: 31 Oct 2018 07:53 by Iva
A Block element that can contain a UI element like an InlineUIContainer, similar to WPF's BlockUIContainer would be a nice enhancement to the control. 
Unplanned
Last Updated: 31 Oct 2018 07:50 by ADMIN
Created by: Iva
Comments: 4
Category: RichTextBox
Type: Feature Request
19
Add a way to restrict page breaks in paragraphs or page breaks between paragraphs. In MS Word, these options are named "Keep lines together", "Keep with next" and "Page break before".
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
When there are several instances of RadRichTextBox in the same page/view, it would be nice if only one instance display any selection. 

In the same scenario, the color of the selection of TextBox, for example, changes. Clearing the selection on LostFocus would have been a solution, however control loses focus to the color pickers, comboboxes, etc. from the SelectionMiniToolBar and RadRichTextBoxRibbonUI.
Completed
Last Updated: 16 Aug 2016 12:58 by ADMIN
Currently, ParagraphDefaultSpacingAfter and ParagraphDefaultSpacingBefore are not applied to paragraphs in tables. This should be changed for consistency with the rest of the document.
Unplanned
Last Updated: 31 Oct 2018 07:50 by ADMIN
Created by: Iva
Comments: 7
Category: RichTextBox
Type: Feature Request
18
Splitting table cells is currently not supported and it would be a nice addition to the functionality related to tables. Menu item should be added to the default table context menu.
Completed
Last Updated: 09 Mar 2015 14:50 by ADMIN
When TextOptions.TextFormattingMode="Display" is set on RadRichTextBox, incorrect Measuring causes TextBlocks to not visualize correctly.
Unplanned
Last Updated: 07 Apr 2020 07:06 by ADMIN
Created by: Iva
Comments: 2
Category: RichTextBox
Type: Feature Request
5
Currently, the only customization that can be performed is using HyperlinkToolTipFormatString property of RadRichTextBox, which sets the format for all hyperlinks in the document of the control. It would be nice if it were possible to be able to set different tooltips. 
Unplanned
Last Updated: 27 May 2021 06:40 by ADMIN
Created by: Iva
Comments: 4
Category: RichTextBox
Type: Feature Request
14
Introduce Navigation Pane as an enhancement to the UI of RadRichTextBox, similar to the one in MS Word (View -> Show -> Navigation pane).
Unplanned
Last Updated: 31 Oct 2018 07:51 by Jorge
In some text editors (e.g. Visual Studio code editor), pressing the Insert button activates overtype mode, where characters are typed over the current ones (the current character is deleted before the new one is inserted). This is not supported in the modern versions of MS Word.
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);
                }               
            }
        }
Completed
Last Updated: 14 Sep 2016 07:25 by ADMIN
Support for file formats other than .TDF is required, so that a broader range of dictionaries can be used. Consider adding support for OpenOffice dictionaries.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: RichTextBox
Type: Feature Request
8
Support (programmatic and non-programmatic) for Word-like real-time text correction and formatting (similar to AutoCorrect and AutoFormat).
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Add possibility to export files in MHTML format.
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Add possibility to import files from MHTML format.