OnClientTextChange not firing for me with a webservice bound control
I dont want custom text...so I was hoping to handle the OnClientTextChange to check the combo value field and cancel with an alert....
_combo.ID = "servicedd" + this.QuestionIDJavascriptFriendly;_combo.WebServiceSettings.Path = this.WebServicePath;_combo.WebServiceSettings.Method = this.WebMethod;_combo.EnableLoadOnDemand = true;_combo.EnableItemCaching = true;_combo.AllowCustomText = true;_combo.Filter = RadComboBoxFilter.Contains;_combo.MaxHeight = new Unit(300, UnitType.Pixel);_combo.CollapseAnimation.Type = AnimationType.None;_combo.ExpandAnimation.Type = AnimationType.None;_combo.EnableViewState = _viewstate;I dont want custom text...so I was hoping to handle the OnClientTextChange to check the combo value field and cancel with an alert....