Hi,
Using the sample code below found in the docs, the event doesn't fire when Enter is pressed. Tab-ing or clicking off the combo box does cause the event to fire. Seems to be a bug.?
Dave
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="Test" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head id="head1" runat="server"> <title></title></head><body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManagerProxy1" runat="server" /> <script type="text/javascript"> function OnClientTextChange(sender, eventArgs) { alert("You typed " + sender.get_text()); } </script> <telerik:radcombobox id="RadComboBox1" runat="server" allowcustomtext="true" onclienttextchange="OnClientTextChange"> </telerik:radcombobox> </form></body></html>