Hello Matthias,
Thank you for reporting this. As a workaround, we can override the IsInputChar() method of the RadSyntaxEditor. To do that we can create a custom class that derives from RadSyntaxEditor control. This custom class will replace the RadSyntaxEditor class in your application.
public class MySyntax : RadSyntaxEditor
{
protected override bool IsInputChar(char charCode)
{
return base.IsInputChar(charCode) || char.IsLetterOrDigit(charCode);
}
public override string ThemeClassName
{
get
{
return typeof(RadSyntaxEditor).FullName;
}
set
{
base.ThemeClassName = value;
}
}
}
Regards,
Dinko | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.