If we copy-paste some french text; f.e. generated by https://fr.lipsum.com/:
This is the original text:
"Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression. Le Lorem Ipsum est le faux texte standard de l'imprimerie depuis les années 1500"
This is what we see if we past it inside the rich text component
Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression. Le Lorem Ipsum est le faux texte standard de l'imprimerie depuis les années 1500
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 - 가다라.
htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Classes;
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
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.
The cell BackColor should be set when setting the paragraph BackColor.
Workaround: use the table properties dialog to set the back color.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); }
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.
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
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(); } }
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.