我对此示例有疑问:http://dojo.telerik.com/ikIqI
我的KendoMultiselect使用标签模板进行自定义,并包含一个内部KendoDropDownList。点击内部选择您可以看到主要选择短时间打开。有没有办法阻止这种影响?
我在内部点击事件上尝试过preventDefault(),stopPropagation()和stopImmediatePropagation()jQuery方法,但它没有帮助..
答案 0 :(得分:0)
请参阅下面给出链接的工作示例: -
http://dojo.telerik.com/ikIqI/6
代码: -
getGeneralMultiselect().wrapper.off("mousedown", ".internalSelect").on("mousedown", ".internalSelect", function(e) {
e.stopPropagation();
});