Completed
Last Updated: 27 Jan 2015 13:34 by ADMIN
ADMIN
Peter
Created on: 12 Dec 2014 14:45
Category: RichTextEditor
Type: Bug Report
2
FIX. RadRichTextEditor - when the user types in RadRichTextEditor the Access Key (mnemonic) is activated
Drop a RadRichTextEditor and a WinForms button on a form.
Set the text of the button to "&Activate" and show a message box in the button click handler.
Run the program, and type some text - the button is activated whenever you try to type the letter "a" in the editor.

Workarround: Inherit RadRichTextEditor and override IsInputChar method
protected override bool IsInputChar(char charCode)
{
    return true;
}

0 comments