Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
In RichTextBox, only the background (the fill attribute) is supported and the val and color attributes (determining the pattern and its color) are not respected while importing.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
When section break between tables is deleted, the document structure gets corrupted and as a result, NullReferenceException is thrown after performing undo of the deletion operation. 
As a workaround PageBreak could be used instead of Section break.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
When continuous section break is copied from RichTextBox and pasted to MS Word, it is inserted as Next Page break.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
InvalidOperationException is thrown in the IsInNonEditableRange() method of RadDocument when assigning a document to RadRichTextBox, which is created through the model and contains several read-only ranges.

Workaround: Call MeasureAndArrangeInDefaulSize().
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
Implement advanced find dialog similar to MS Word which provides an option to search for paragraph end marker, tab character, and others.
Completed
Last Updated: 31 Oct 2018 08:14 by ADMIN
When dragged from the toolbox, the wizard adds only <telerik:RadRichTextBox /> tag and does not generate XAML for the Ribbon UI. 

Workaround: On second attempt, the UI of the ribbon is generated as expected. Note: The generation is not working in Visual Studio 2017, even on the second attempt.

Available in R1 2018 Official Release version.
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.
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
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: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.
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
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.
Unplanned
Last Updated: 26 Jul 2017 07:45 by ADMIN
Uppercase words with non-alphanumeric symbols, e.g. period,  are recognized as spelling errors by the spell checker.

There are two scenarios which we think are related to this.
1. For example, you have  U.N. spell checker is recognized only the U.N and considering the last dot as an end of a sentence. If you add the U.N. to the dictionary the spell checker still recognizes only U.N and the last dot is ignored.
2. The SpellCheckUppercaseWords property of the DocumentSpellChecker is set to false and words with uppercase should be ignored. Nevertheless, this property is set to false the U.N. is not ignored.
Unplanned
Last Updated: 07 Mar 2017 09:53 by ADMIN
Using the ClearAll button in the Tabs dialog, the properties selected for alignment and leader of the tab stop are not reset to their default values.

Workaround: Create a custom TabStopsPropertiesDialog and reset the values in the Click event handler of the Clear All button. The code for the custom dialog is attached.
Unplanned
Last Updated: 08 Mar 2017 11:31 by ADMIN
Only a single tab stop on the same position should be allowed. This should be restricted in the Tabs dialog.

Workaround: Create a custom TabStopsPropertiesDialog and change the behavior of the OK button through the Click event handler.
Completed
Last Updated: 19 Mar 2018 11:28 by ADMIN
Replacing a word with the same word but with capital letters leads to an infinite loop in the FindReplaceDialog when the search and replace values are surrounded by spaces. For example, search for " and " and replace with " AND ".

Workaround: Create a custom dialog and modify the logic for replacing text.

Available in LIB Version 2018.1.319.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
MS Word shows additional tab stop for a text in a list when a document is exported to RTF format.
Steps to reproduce:
1. Open RadRichTextBox
2. Add 2 or 3 paragraphs with text.
3. Add a 5-inch tab stop for those paragraphs.
4. Apply a list over those paragraphs.
5. Export to RTF format and view in MS Word.
Note: The paragraphs should not contain any tab symbols.
Observed result: MS Word shows additional tab stop at the start of the text in the list.
Completed
Last Updated: 26 May 2017 11:57 by ADMIN
NullReferenceException is thrown when a hyperlink is removed from the document while the user is hovering it with the mouse. Such cases are when hyperlink is removed from the context menu, or when TOC field containing hyperlinks is updated from the context menu.


The exception is with the following call stack: 

ErrorMessage: Object reference not set to an instance of an object.
StackTrace:    at Telerik.Windows.Documents.UI.UIProviders.HyperlinkUIProviderBase.UIElement_MouseEnter(Object sender, MouseEventArgs e)
   at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)

   ...

If the mouse hovers the hyperlink a moment later, exception is not observed. The situation when the mouse is over a hyperlink is not so uncommon:

- When the user operates hyperlink context menu with the keyboard and removes the hyperlink

- when there are multiple items in the ToC, there is great probability for the mouse to be over a hyperlink which is just below the Update Field button in the context menu - and when the context menu disappears, the mouse gets over the hyperlink.

Fix available in LIB Version 2017.2.529.
Unplanned
Last Updated: 06 Nov 2018 12:38 by ADMIN
The header of the first page can have only settings applied without any content. In such scenarios, RtfFormatProvider doesn't import the whole header, which can lead to a different layout of the document.
Unplanned
Last Updated: 22 Mar 2017 15:26 by ADMIN
The exception is thrown when performing undo of a section break, immediately followed by a table, and the second section is separated between more than one section layout box.

Workaround: Ensure there is a paragraph between the break and the table.