Completed
Last Updated: 11 Jan 2021 10:15 by ADMIN
Release R1 2021

If you press keys as the following order with English keyboard in Korean IME, you can get Korean letters - 가나다라.
'rkskekfk'

rk => 가
sk => 나
ek => 다
fk => 라

When I use Korean letters, second or third letter disappeared - 가다라.

 
Unplanned
Last Updated: 07 Jan 2021 05:32 by ADMIN
Character properties applied on the last paragraph symbol for a paragraph in a list, e.g. font size, are not exported to HTML when StyleExportMode is Inline. 

As a side effect, when the document is imported back, and the text of the bullet is deleted, its properties switch back to the default ones.

Workaround: Change the styles to export as inline properties:
htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Classes;
 
Please be aware that this may cause side effects, as described in this issue: RichTextBox: Character properties of the paragraph symbol are exported to HTML for the whole list item when StyleExportMode is Classes
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: 17 Dec 2020 13:45 by ADMIN

The cell BackColor should be set when setting the paragraph BackColor.

Workaround: use the table properties dialog to set the back color.
Completed
Last Updated: 11 Dec 2020 09:14 by ADMIN
Release Q3 2015
To reproduce:
- Add RichTextEditorRibbonBar and associate it with RadRichTextEditor at design time.
- Show the form and then force the garbage collector.

Workaround:
- Associate the controls in the load event.
- Set the AssociatedRichTextEditor to null just before the form is closed. 

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);
    richTextEditorRibbonBar1.AssociatedRichTextEditor = radRichTextEditor1;
}
protected override void OnClosing(System.ComponentModel.CancelEventArgs e)
{
    richTextEditorRibbonBar1.AssociatedRichTextEditor = null;
    base.OnClosing(e);
}
Unplanned
Last Updated: 03 Dec 2020 12:09 by ADMIN
After a hyperlink is edited in a RTF document it duplicated
Unplanned
Last Updated: 30 Nov 2020 14:31 by ADMIN

Please refer to the attached gif file illustrating better how to replicate the undesired behavior.

1. If you right-click, the Copy and Cut context menu items are disabled - OK

2. If you select some text and right-click, the Copy and Cut context menu items are enabled - OK.

3. If you select some text and right-click very fast, sometimes Copy and Cut are disabled. Even there is cases in which Cut is enabled and Copy is disabled. 

Workaround: please ensure that you select the text first and then right-click to trigger the context menu.

Unplanned
Last Updated: 25 Nov 2020 12:47 by ADMIN
The pasted text is not encoded decoded when the target framework is .Net 4.0 and the text contains some symbols like é, è, à, ê, ù, etc.
Unplanned
Last Updated: 11 Nov 2020 06:55 by ADMIN
Exception when adding a space after a table placed in the header or footer.
Unplanned
Last Updated: 09 Nov 2020 07:32 by ADMIN
The table is not properly resized when using the left-most border. The table should be resized like in MS Word (see attached).
Unplanned
Last Updated: 09 Nov 2020 07:09 by ADMIN
When you insert a table and try to grab the right border and resize it, the result is that the inner cells resize, while the total width of the table remains the same. 
Unplanned
Last Updated: 26 Oct 2020 07:13 by ADMIN
When a DOCX document contains a table with fixed layout, and the table contains <tblGrid> element with improper widths (not coinciding with the ones visualized by MS Word), and such document is imported, the table is laid out with the width of the sum of the column widths imported from the table grid (tblGrid), instead of ones that could be correctly computed by the preferred width of the table cells. 

MS Word, for example, may ignore the widths specified in the tblGrid and compute new ones.

As a side effect, fixed-width tables can be laid out longer than their preferred width.
Completed
Last Updated: 19 Oct 2020 13:33 by ADMIN
Release R3 2020 SP1

Hi,

Font size in ribbon does not change to the font size of custom style. 

 

See attached video and c# project.

Best regards,

Ziping Wang

Completed
Last Updated: 15 Oct 2020 05:07 by ADMIN
Release R3 2020 SP1
To reproduce:
- Add RichTextEditorRuler and RichTextEditor to a form.
- Add some tab stops in the ruler and press the tab key.

Workaround:
void radRichTextEditor1_CommandExecuting(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is IncrementParagraphLeftIndentCommand)
    {
        e.Cancel = true;
        TabForwardCommand tabForward = new TabForwardCommand(this.radRichTextEditor1.RichTextBoxElement);
        tabForward.Execute();
    }
}
Unplanned
Last Updated: 12 Oct 2020 14:07 by ADMIN

RadRichTextEditor renders the text with a little bigger characters spacing than RadRichTextBox and MS Word.

Note: this text spacing problem can be observed in other Telerik controls as well.

Unplanned
Last Updated: 18 Sep 2020 06:55 by ADMIN
Created by: Maulik
Comments: 0
Category: RichTextEditor
Type: Bug Report
2
When the copied text doesn't contain any formating the Keep Text Only paste option should be applied.
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.
Completed
Last Updated: 21 Aug 2020 12:32 by ADMIN
Release R3 2020 (LIB 2020.2.826)

Please refer to the attached IncorrectImageResizing.gif illustrating how to reproduce the problem with the Demo application.

Workaround: feel free to resize the image via the mouse cursor.

Completed
Last Updated: 19 Aug 2020 09:16 by ADMIN
Release R2 2018
Created by: Kishore
Comments: 1
Category: RichTextEditor
Type: Feature Request
0
1) Run the RichTextEditor
2) As you can see there are already some images inserted in the document
3) Right click on any image , and click Edit Image, Image editor dialog box does open up. (as shown in the attached pic EditImageActive1.jpg)
4) click outside the image and right click on the image again, and this time you can see the Edit image option is disabled and this happens consistently. (as shown in the attached pic EditImageInactive.jpg)

One more thing to observe was upon right clicking the image sometimes the Edit image option does show up in the context menu and a different menu appears (as shown in the attached pic NoEditImageOption1)