Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
When applying a bullet/numbered list and track changes are enabled, the change of the bullet/number should be in indicated with the track changes color.

Currently the changes is only visualized as a line left of the paragraph.
Unplanned
Last Updated: 31 Oct 2018 07:51 by Joan VANDERWEYST
When cells with borders are copied from Microsoft Excel and pasted in RadRichTextBox, some of the borders are missing depending on their type - for example double borders, but also some other types.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
Inserting carriage returns in table cell until floating UI container is moved to another page causes a crash.
Declined
Last Updated: 31 Oct 2018 07:51 by Zhun
After further discussion within the XAML team and more research, we decided that introducing a similar property does not align with the current idea and model of RadRichTextBox. Thus, we are declining this item.
Unplanned
Last Updated: 31 Oct 2018 07:51 by Mi
Created by: Jek
Comments: 1
Category: RichTextBox
Type: Feature Request
6
A digital signature can be used to authenticate the identity of a user and the document’s contents. 
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
Add a property that can control whether a table row is allowed to break across pages or not.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
When specifying an image is wrapped Top and bottom and has a large distance from text (e.g. 500px top and 500px bottom) an exception in the arrange occurs.

Steps to reproduce:
- Select image and change its Wrapping style to Top and bottom. 
- Set values 500px for distance values
Unplanned
Last Updated: 31 Oct 2018 07:51 by Andy
Currently, when a user double-clicks a word in RadRichTextBox and does not release the left button, moving the cursor drags the selected word. In most word processors the same actions extend the selection. 

Note: The same applies for triple click, which selects the paragraph.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RichTextBox
Type: Feature Request
6
Add support for fallback font families on import, e.g. style="font-family:trebuchet ms, helvetica".
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.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
When a floating image is moved out of the viewport it disappear and only its borders stay.

Workaround: Set padding: <telerik:RadRichTextBox LayoutMode="Flow" Padding="0 0 0 500" />

Steps to reproduce: 
1. Open RadRichTextBox application

2. Set the layout mode to Web

3. Insert an image and set its text wrapping to Square (use the context menu when you click with the right mouse button on the image)

4. Move the image in a way, part of the image will go outside of the viewport

Observe: Image disappears, only the image adorner stays. Sometimes when you insert another image after the bug has occurred, the bug can be reproduced even without step 4 from the above described.

Expected: The image shall not disappear and it shall be placed near the end of the viewport, but not outside it.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
InsertTableRowAbove/Below and DeleteTableRow commands now are disabled when there is selection. This makes them inconvenient for the following scenarios:
- Insert multiple rows
- Delete multiple rows

Also, when multiple rows are selected and InsertTableRowAbove/Below is executed, is should add the same number of rows.
Completed
Last Updated: 31 Oct 2018 07:51 by ADMIN
RadDocument instance leaks through StylesGallery when RadDocument is set multiple times in a sequence to RadRichTextBox - for example by setting RadRichTextBox.Document property multiple times.

Steps to reproduce:

- Start application containing RadRichTextBox with StylesGallery

- Execute this code on a button click: 

            this.radRichTextBox.Document = new RadDocument();
            this.radRichTextBox.Document = new RadDocument();


Observed: RadDocument leaks through the styles gallery.


Available in LIB version: 2017.1.227
Unplanned
Last Updated: 31 Oct 2018 07:51 by Mi
Support PDF/A when exporting. 

More information at wikipedia: http://en.wikipedia.org/wiki/PDF/A .

Workaround: Currently, the exported PDF document could be imported with RadPdfProcessing and exported with one of the supported PDF/A levels ( http://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/howto/comply-with-pdfa-standard ).
Unplanned
Last Updated: 31 Oct 2018 07:51 by David
ADMIN
Created by: Telerik Admin
Comments: 2
Category: RichTextBox
Type: Feature Request
6
Introduce support for import/export of form feed character ( "\f")
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
Implement child dialogs for Style Formatting Properties Dialog. This will allow users to modify Style's properties related to font properties, paragraph properties, tabs, numbering and borders.
Unplanned
Last Updated: 31 Oct 2018 07:51 by Markus Hopfenspirger
Currently UI code generated by RadRichTextBox wizard is not localized out of the box. Add support for easier localization.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
Changing the preferred width of columns to percentages from the Table Properties dialog actually sets them in pixels.

Steps to reproduce:
1) Insert a table

2) select table column property and set preferred width to 20%

3) press "next column" button and set preferred width to 20% 

4) Go to previous columns 

Expected: Column width is set in percentage.

Actual: Some (or all) columns have width set in pixels.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
There are cases when it is unwanted to be able to add words to a custom dictionary. In that case the DocumentSpellChecker should not create a custom dictionary in the IsolatedStorage and this should be reflected in the default UI: 
1. SpellCheckingDialog - the buttons "buttonAddToDictionary" and "buttonEditCustomDictionary". 
2. ContextMenu - the item "Add to dictionary". 
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
ADMIN
Created by: Mihail
Comments: 3
Category: RichTextBox
Type: Feature Request
7
Currently invalid attribute values, including invalid or empty values in CSS attributes in the 'style' attribute, could cause importing property with incorrect value, or NullReferenceException (the document cannot be imported).
Examples:
----------------------------------------------------------
<table width=”*”>
	<tr>
		<td>More Random Text</td>
	</tr>
</table>

The table is imported with 0 width. Instead the width should not be set.
----------------------------------------------------------
<table style="font-size:;">
	<tr>
		<td>More Random Text</td>
	</tr>
</table>

NullReferenceException is thrown.
----------------------------------------------------------

Workaround: replace the invalid values before import:
string importString = html.Replace("font-style: ;", "");