I am using an Ajax Control Tool Kit Combobox in my project. I want to trigger a change event when I change the value of the Combobox. I goolgled it a lot but there are no proper solution.
The ajax combobox is comprised of a textbox, a button and a list. I figured out the textbox id and I am trying to provide a change event to it. The change event is not working. But it will trigger the blur,select events.
this is the bit of code that I am using for the change event. I am not able to figure out why the change event is not working.
$('#' + $('.DDlCmbEmpID')[0].id + '_TextBox').bind("change",function (event) {
alert("Sample");
});