Completed
Last Updated: 30 Oct 2017 10:19 by ADMIN
ADMIN
Hristo
Created on: 17 Oct 2017 15:46
Category: RichTextEditor
Type: Bug Report
2
FIX. RadRichTextEditor - Pressing the [ALT GR] + [C] results in incorrect text added to the editor when using Polish keyboard
How to reproduce: simply configure Polish keyboard and press [ALT GR] + [C], the added text is "©ć". The expected behavior would be to only add "ć"

Workaround: Handle the CommandExecuting event:
private void RadRichTextEditor1_CommandExecuting(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is InsertTextCommand && e.CommandParameter.ToString() == "©")
    {
        e.Cancel = true;
    }
}
0 comments