Hi,
In radcombobox I am trying to capture and change the case of the characters to upper/lower, then and there the user types in a text.
I have been following the article referenced here.
http://www.telerik.com/community/forums/aspnet-ajax/input/how-to-make-user-entry-in-radtextbox-as-uppercase.aspx
I am using the OnClientKeyPressing
event in the RadComboBox and the AllowCustomText property is set to "True".
I am getting the error that "Object doesn't support the method" error when accessing
args.set_newValue(args.get_newValue().toUpperCase());
.Please help out.