Unplanned
Last Updated: 31 Oct 2018 08:13 by ADMIN
This functionality is not supported out-of-the-box. However, it could be implemented by the users as demonstrated in the Custom Code Formatting Language SDK example (https://github.com/telerik/xaml-sdk/tree/master/RichTextBox/CustomCodeFormattingLanguage).
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
When editing header/footer in MS Word, the paragraph which is inserted there has defined tab stops. In RadRichTextBox there isn't and thus, when the tab is pressed, a default tab stop is inserted.
Unplanned
Last Updated: 07 Oct 2019 14:55 by ADMIN
When an HTML document contains a div and a span just after it, the span is imported as a child of the div. As a result, the span inherits some of the settings applied to the div.
Completed
Last Updated: 21 Oct 2019 12:01 by ADMIN
Created by: Stefan
Comments: 0
Category: RichTextBox
Type: Bug Report
0

System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:(no path); DataItem=null; target element is 'SolidColorBrush' (HashCode=63604780); target property is 'Color' (type 'Color')

Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
ADMIN
Created by: Boyko
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Line break has a specific property which should be taken into account only when there is a floating object which interrupts the line, e.g.:

<w:br w:type="textWrapping" w:clear="all" /> 
Completed
Last Updated: 20 May 2022 07:38 by ADMIN
Release LIB 2022.2.523 (23 May 2022)

Showing a document that contains a Table object without any TableRow inside leads to NullReferenceException.

Workaround: After importing the document, remove the tables that don't have content:

foreach (var table in document.EnumerateChildrenOfType<Table>())
{
    if (table.Rows.Count < 1)
    {
        table.Parent.Children.Remove(table);
    }
}

Unplanned
Last Updated: 18 Sep 2019 16:06 by ADMIN
Created by: Ye
Comments: 0
Category: RichTextBox
Type: Feature Request
0
An option that enables users to paste any rich text content as a picture of it.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
The width of the table cell is calculated wrongly when it is set in the CSS style and through attribute: <td style="WIDTH: 75%" width=450>First cell</td>. The Unit isn't reset while reading the attribute value as its unit is missing and it is interpreted as % because the previous value is in percent.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
Importing HTML document with white spaces and new lines separating the HTML elements will lead to additional intervals between words.
Unplanned
Last Updated: 13 Sep 2019 15:44 by ADMIN

Currently floating images specified using the VML shapes are imported as non-floating, for example:

<v:shape id="_x0000_s1026" type="#_x0000_t75" style="height:180.25pt;margin-left:62.25pt;margin-top:1.65pt;position:absolute;width:180.25pt;z-index:251658240" o:preferrelative="t">
        <v:imagedata r:id="rId4" />
</v:shape>

Declined
Last Updated: 12 Sep 2019 15:58 by ADMIN
Created by: Matt
Comments: 1
Category: RichTextBox
Type: Bug Report
0

When importing from a .docx the RichTextBox is adding a blank line for each continuous section break. You can see this in the attached file - in the RichTextBox there is an extra line between sections that does not exist in the source word document.

Declined
Last Updated: 13 Sep 2019 14:14 by ADMIN
Created by: Matt
Comments: 1
Category: RichTextBox
Type: Feature Request
0
MS Word has support for line numbers (see attached file) but RichTextBox ignores them. Could we get support for Words line numbering options?
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
When a document has some section properties like orientation or page size and the document is printed with virtual printer, the generated PDF does not preserve the section properties. 

For example, if the document has Landscape orientation set, in the generated PDF file, the page with Landscape orientation is visualized with Portrait orientation and the text is drawn vertically.
If the document has some page size set, for example A5, in the generated PDF file, the page with size A5 is visualized as page with A4 page size.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
After inserting page break or section break the visual position of the caret is wrong. It should be at the beginning of the paragraph instead of beginning of the page. It's observed for all type of breaks except a line break. 
Completed
Last Updated: 15 May 2023 09:33 by ADMIN
Release R3 2018
When a table is dragged after a page break, and then Undo/Redo is performed for the drag operation NullReferenceException is thrown.
Unplanned
Last Updated: 28 Aug 2019 13:16 by ADMIN
Created by: mike
Comments: 0
Category: RichTextBox
Type: Feature Request
0
To provide a functionality to crop the image to split its content in multiple pages. This preserves the whole image in the file, but when it is rendered it shows only the cropped image area.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
When a custom style is applied to a table and the document is exported to DOCX or RTF format, after importing and deleting the custom style, some properties like font size and foreground are preserved.
Unplanned
Last Updated: 28 Aug 2019 11:05 by ADMIN
Exporting RTF document breaks right to left text direction.
Completed
Last Updated: 31 Oct 2018 08:14 by ADMIN
Currently, there is an SDK example (https://github.com/telerik/xaml-sdk/tree/master/RichTextBox/WindowsMetafileFormatImageDecoder) showing how to implement a custom decoder that can import WMF and EMF images. We could integrate this decoder in the source code and enable the users to import their documents that contain such type of images out-of-the-box. 

Available in R1 2017 Official Release Version.