Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
If I drag&drop a RadRichTextEditor i want a wizard like the RichTextBox-WPF-Control. I don't like the ribbon style, because I need a compact editor. So I like the CommandBarStrip look of the "command bar ui"-demo or the ASP.NET Editor.
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
When the border thickness is increased the table size should be increased as well - like in Microsoft Word.
Unplanned
Last Updated: 02 Apr 2021 09:13 by ADMIN
Created by: JOSE MANUEL PÉREZ RAMÍREZ
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
According to the Office Open XML specification, the attributes must be used with the prefix of their namespace to ensure that the unique attribute is used. However, some tools generate invalid documents without that prefix. RadRichTextBox throws ArgumentException in such cases. Enable the control to handle similar scenarios without errors.
Unplanned
Last Updated: 26 Feb 2021 06:12 by ADMIN
Created by: Telerik Admin
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
Add support for embedded objects
Unplanned
Last Updated: 09 May 2022 12:06 by Anu
Introduce an option to change the character which follows the list level symbol. By default this is a Tab character, however, they can be the following:

- Tab
- Space
- Nothing (none following character)

In OOXML, this is described using the 'suff' element.
In MS Word, this setting could be changed by selecting the bullet/number of the list item -> Context Menu -> Adjust List Indents -> Follow number with:.
Unplanned
Last Updated: 09 Sep 2022 12:08 by Martin
Add support for vertical (rotated) text in TableCell
Completed
Last Updated: 03 Jun 2015 09:54 by ADMIN
add property that allows the width of the caret to be changed.
Unplanned
Last Updated: 16 Jul 2021 10:30 by ADMIN
Created by: Dimitar
Comments: 2
Category: RichTextEditor
Type: Feature Request
1
Compare documents functionality similar to MS Word
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
ADD. RadRichTextBox - import text boxes from docx files
Unplanned
Last Updated: 09 Mar 2020 11:59 by ADMIN
Unplanned
Last Updated: 25 Nov 2019 13:17 by ADMIN
Created by: KrishTS
Comments: 3
Category: RichTextEditor
Type: Feature Request
1

Hi Team,

Greetings! 

We recently bought your Tool for one our Windows Forms Project work in VS2019 (4.7.2 framework). 

There is a need for us to have Emojis inside the editable Textbox / RichTextEditor in Color.

For example, if we paste Emojis inside the text editor, it should retain the color of the Emoji as it is. 

Currently if we paste the Emoji inside the text editor, its only pasting the Emoji but losing it's color. 

How to retain the color of the Emoji inside the editable Textbox / RichTextEditor ? Is there any property or so we need to set?

The users of our application can paste any kind of Emoji (like inbuilt Windows10 Operating System Emojis etc.,) and there is no limitation for this. 

Kindly advice.

 

with regards,

Krish TS,

Senior Technical Programmer Analyst,

DXC.technology,

India. 

Unplanned
Last Updated: 19 Nov 2019 06:48 by ADMIN
Add Paragraph property controlling  whether SpacingBefore / SpacingAfter is applied between paragraphs with the same style.

In MS Word, the corresponding option is controlled with "Don't add space between paragraphs of the same style" checkbox in the font properties dialog - and the paragraph spacing after will not be applied. 

In OOXML, it is described with the w:contextualSpacing element. We don't respect this property on import of such files, and the paragraph spacing is bigger.

Common use case for this feature is that when list is applied to multiple paragraphs, Paragraph List style is applied to the items, and this style has "Don't add space between paragraphs of the same style" applied, so the vertical spacing between the items is smaller.
Unplanned
Last Updated: 01 Jul 2019 07:38 by ADMIN
The dialog should match the strings contained in the different document parts (headers, footers, footnotes, endnotes, comments).
Unplanned
Last Updated: 02 Oct 2018 07:33 by ADMIN
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.
----------------------------------------------------------
<p style='padding: 3px 3px 3xp 7px;'>test</p>

IndexOutOfRangeException is thrown.

----------------------------------------------------------

 

Workaround: replace the invalid values before import: string importString = html.Replace("font-style: ;", "");
Unplanned
Last Updated: 25 Sep 2018 07:10 by ADMIN
ADMIN
Created by: Hristo
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
The field result shows the number of pages the current section contains.
Unplanned
Last Updated: 24 Aug 2018 12:56 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
See attached!
Unplanned
Last Updated: 29 May 2018 12:29 by ADMIN
Currently unknown/unsupported elements are skipped, which potentially loses text content. Consider adding setting in HtmlImportOptions allowing the phrasing content (text) of these elements to be imported. 

Sample HTML:

<html>
<body>
<test-test>test-test</test-test>
<body/>
</html>


Browsers visualize it as "test-test", while RadRichTextBox doesn't import anything.

MS Word imports such elements as inline elements (just like spans).
Unplanned
Last Updated: 25 Jun 2018 12:42 by ADMIN
ADMIN
Created by: Hristo
Comments: 2
Category: RichTextEditor
Type: Feature Request
1
<samp> HTML element could be imported as span with specific formatting. Currently it's just ommited.
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
Add similar functionality as MS Word.
Unplanned
Last Updated: 27 Apr 2018 13:17 by ADMIN
When the content of an entire row is copied and the caret is inserted in the left most column of a row, then the content of each cell in that row should be overwritten with the contents in the clipboard when pasted.

When such content is pasted just after a table, new row is added and filled with values.

When such content is pasted in paragraph, new table is created.