Won't Fix
Last Updated: 11 Aug 2016 14:05 by ADMIN
When the tabbed document becomes a dockable window the ContextMenu Icons are no longer visible.

<telerik:RadDocking x:Name="radDocking"> 
 <telerik:RadDocking.DocumentHost> 
  <telerik:RadSplitContainer> 
   <telerik:RadPaneGroup> 
    <telerik:RadDocumentPane Title="Test"> 
     <telerik:RadRichTextBox x:Name="radRichTextBox" /> 
    </telerik:RadDocumentPane> 
   </telerik:RadPaneGroup> 
  </telerik:RadSplitContainer> 
 </telerik:RadDocking.DocumentHost> 
</telerik:RadDocking>

                 
Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
Steps to reproduce:
1. Type a long word in the editor. The word must be longer than the width of the page.
2. Set a hanging indent different than the default one.
3. Select part of the word starting from the beginning of the paragraph.
4. Add an annotation range, e.g. a Comment

Result: The hanging indent is not properly reflected in the editor.
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
The time it takes to apply highlighting to a document in Flow layout mode is more than expected. See ticket 555863 for a sample project and document.
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Andrew
Comments: 1
Category: RichTextBox
Type: Feature Request
2
Japanese users use distributed text alignment, which justifies all lines including the last one.
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
When the caret is positioned in the beginning of a paragraph and a table is inserted, an additional paragraph before the table should not be added. This also includes the case with a blank document.

Special case: When there is a table in the document, inserting another just after it should be disabled.
Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
All is marked when None should be selected.
Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
The tooltip shown when hovering the styles in the ManageStylesDialog lists some unrelated values and should be revised.
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
It should be possible to have several columns in a section of the document. These columns should also be persisted on export/import.
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.
Declined
Last Updated: 10 Aug 2016 15:31 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: RichTextBox
Type: Bug Report
1
This item is duplicated. Please follow the other item at http://feedback.telerik.com/Project/143/Feedback/Details/159291.
Completed
Last Updated: 03 Jul 2016 10:55 by ADMIN
Add support for lower-alpha and upper-alpha.
Completed
Last Updated: 27 Jun 2016 08:56 by ADMIN
When RadRichTextBox (in Paged layout mode) is in RadTabItem in RadTabControl, ribbon UI buttons and keyboard bindings are not working.

Workaround: Use System's TabControl instead of the RadTabControl.
Completed
Last Updated: 25 Jun 2016 13:17 by ADMIN
Workaround: Manipulate the clipboard content in CommandExecuting even handler:

private void RichTextBox_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is PasteCommand)
    {
        DocumentFragment document = ClipboardEx.GetDocument();
        bool hasChangedDocument = false;

        foreach (FieldRangeStart fieldStart in document.EnumerateChildrenOfType<FieldRangeStart>())
        {
            foreach (Span span in fieldStart.Field.GetFragmentByDisplayMode(FieldDisplayMode.Code).EnumerateChildrenOfType<Span>())
            {
                span.ForeColor = Colors.Black;
                hasChangedDocument = true;
            }
        }

        if (hasChangedDocument)
        {
            ClipboardEx.SetDocument(document);
        }
    }
}
Completed
Last Updated: 24 Jun 2016 15:41 by ADMIN
If there is a paragraph with set background color, the styles for paragraphs are not reset after the colored one and this results in additional background color when importing RTF documents.
Completed
Last Updated: 23 Jun 2016 14:13 by ADMIN
When a paragraph is styled in HTML format  with line-height it should be with AtLeast line spacing type instead of Exact. 

The same thing happens when the line-height is specified as normal: style="line-height: normal;". 
Completed
Last Updated: 22 Jun 2016 14:36 by ADMIN
When trying to export a document which contains hyperlink pasted from Outlook, KeyNotFoundException is thrown. The color of the span is not registered.

To work around this, register a style with the same color:

StyleDefinition style = new StyleDefinition("test", StyleType.Character);
style.SpanProperties.ForeColor = Color.FromArgb(100, 200, 25, 104);
this.radRichTextBox.Document.StyleRepository.Add(style);