Posted 17 May 2013 Link to this post
Posted 22 May 2013 Link to this post
We are aware of this and we will address it in our upcoming release Q2 2013 scheduled for mid-June. For you version you can inherit RadAutoCompleteBox and override the ProcessDialogChar method:
public
class
MyAutoCompleteBox : Telerik.WinControls.UI.RadAutoCompleteBox
{
override
string
ThemeClassName
get
return
typeof
(Telerik.WinControls.UI.RadAutoCompleteBox).FullName;
}
set
{}
protected
bool
ProcessDialogChar(
char
charCode)
Keys modifierKeys = Control.ModifierKeys;
if
((modifierKeys & Keys.Alt) == Keys.Alt || (modifierKeys & Keys.Control) == Keys.Control)
base
.ProcessDialogChar(charCode);
false
;
Posted 27 May 2013 Link to this post
I was able to apply the theme using the ThemeClassName, and this is the way in which themes resolve our controls. Please refer to attached video from my side. As I mentioned in your other ticket please, sending a sample application to us that demonstrates the case will allow us to assist you further. I am looking forward to your reply.