This question is locked. New answers and comments are not allowed.
There appears to be a documentation inconsistency for the ComboBox control. I’m using version 2010.3.1318.340.
Client Side Event Registration at http://demos.telerik.com/aspnet-mvc/razor/combobox/clientsideevents shows you can register an event using the bind method. i.e.
$(document).ready(function() { $('#ComboBox').bind('change', function(e) { // your code }); });However there is no 'change' event. After wasting a lot of time I finally went through the source code and found that telerik.list.js doesn't bind to the 'change' event, it uses 'valueChange'
Also is there any real documentation for the Client side API? Or do we have to pull everything from the demos and source code?