10 Jan 2012
(Link to this post)
there is a section kendo.ui.list in kendo.all.js
/**
* @name kendo.ui.List.Description
*
* @section Common class for ComboBox, DropDownList and AutoComplete widgets.
*/
if you add return false in _click function it will work fine
_click: function(e) {
this._accept($(e.currentTarget));
return false;//mychange
},
_click attached to jquery event
ta