Unplanned
Last Updated: 21 Jun 2018 13:56 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: RichTextEditor
Type: Feature Request
3
Provide functionality allowing a document to be thumbnailed. The customers should be able to export a document to an image.

Workaround: Use attached project. 
Unplanned
Last Updated: 19 Jun 2017 13:30 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: RichTextEditor
Type: Feature Request
3

			
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
Unplanned
Last Updated: 19 Feb 2018 13:53 by ADMIN
ADMIN
Created by: Hristo
Comments: 2
Category: RichTextEditor
Type: Feature Request
3
Implement commands and UI for producing labels using Mail Merge. 

Behind the scenes this is implemented as Table with the proper number of table columns and rows, and eventually (depending on the setup) NEXT field (https://support.office.com/en-us/article/Field-codes-Next-field-3862fad6-0297-411a-a4e7-6ff5bcf178fd?ui=en-US&rs=en-US&ad=US) - so this will eventually require implementing NEXT field.

Note: In MS Word, this is in Mailings -> Start Mail Merge -> Labels...
Unplanned
Last Updated: 01 Mar 2023 06:28 by Ziping

RichTextEditor: Lists are always exported to HTML with Verdana font. 

Changing the normal style or setting the DocumentInheritsDefaultStyleSettings has no effect.

Duplicated
Last Updated: 16 May 2023 13:50 by ADMIN
Created by: Desislava
Comments: 0
Category: RichTextEditor
Type: Feature Request
2
Unplanned
Last Updated: 24 May 2023 14:25 by Fabian
Add an option for users to be able to export embedded images as Content IDs.
CID images work by attaching the image to the email sent and then using standard HTML image tags that reference that image to eventually embed it in the email when the user opens it.
Unplanned
Last Updated: 20 Apr 2021 06:06 by ADMIN
Show substitute image when the image from the document cannot be rendered 
Unplanned
Last Updated: 19 Apr 2021 05:19 by ADMIN
Make the image loading async and consider reducing their size like MS Word
Unplanned
Last Updated: 16 Apr 2021 06:30 by ADMIN
Created by: Oksana
Comments: 0
Category: RichTextEditor
Type: Feature Request
2

To reproduce: 

public RadForm1()
{
    InitializeComponent();
    radRichTextEditor1.CommandExecuted += RadRichTextEditor1_CommandExecuted; 
    radRichTextEditor1.ActiveDocumentEditorChanged += RadRichTextEditor1_ActiveDocumentEditorChanged;
}

private void RadRichTextEditor1_ActiveDocumentEditorChanged(object sender, Telerik.WinForms.Documents.UI.ActiveDocumentEditorChangedEventArgs e)
{
    e.OldActiveEditor.CommandExecuted -= RadRichTextEditor1_CommandExecuted;
    e.NewActiveEditor.CommandExecuted += RadRichTextEditor1_CommandExecuted;        
}

 
private void RadRichTextEditor1_CommandExecuted(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutedEventArgs e)
{
    if (e.Command is InsertPictureCommand)
    {

        var imageInline = this.radRichTextEditor1.DocumentEditor.Document.CaretPosition.GetPreviousInline() as ImageInline;
        if (imageInline != null)
        {
            imageInline.Size = new Telerik.WinControls.RichTextEditor.UI.Size(50, 50);
        }
    }
}
Unplanned
Last Updated: 24 Dec 2020 08:20 by ADMIN
Created by: Guillermo
Comments: 0
Category: RichTextEditor
Type: Feature Request
2

Implement nested mail merge - creating mail merge reports using master-detail tables in a data source.

Typical example of this is creating an invoices with mail merge, where each invoice contains a list of items.

Workaround: for some scenarios creating custom merge field which evaluates to Table could simulate this behavior:

http://www.telerik.com/forums/merge-reports#lUdH39ww00SnEhTLLlrXwA

Unplanned
Last Updated: 22 Dec 2020 14:52 by ADMIN

Some fonts don't include bold and italic font styles. Currently, text formatted with such fonts and with applied bold or italic formatting is exported without the italic or bold effect. Instead, the default typeface can be exported, and additional transformation could be applied to the letters itself - e.g. skew transform for the italic.

Note: It seems that the GlyphTypeface for such fonts is using a non-italic (non-bold) font file and has StyleSimulations property set to ItalicSimulation (BoldSimulation) which is used in order to render the glyphs italic.

Unplanned
Last Updated: 31 Aug 2020 13:03 by ADMIN
Created by: Oksana
Comments: 0
Category: RichTextEditor
Type: Feature Request
2
Add support for Paragraph and Page borders.
Declined
Last Updated: 14 Aug 2017 13:10 by Felix
Unplanned
Last Updated: 08 Nov 2016 14:12 by ADMIN
ADMIN
Created by: Hristo
Comments: 0
Category: RichTextEditor
Type: Feature Request
2
- There should be a formatting symbol for the character

- Pressing Ctrl+Shift+Space should insert the character (standard MS Word shortcut)

- Import from docx should be implemented

- The symbol should be treated as a separator between words when spell-checking
Unplanned
Last Updated: 06 May 2016 13:16 by ADMIN
ADMIN
Created by: Hristo
Comments: 0
Category: RichTextEditor
Type: Feature Request
2

			
Completed
Last Updated: 18 Jun 2018 08:34 by ADMIN
ADMIN
Created by: Dimitar
Comments: 1
Category: RichTextEditor
Type: Feature Request
2

			
Unplanned
Last Updated: 30 Apr 2021 08:16 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 10:08 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: RichTextEditor
Type: Feature Request
2
Support for math type equations.