Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Kendo 多选来实现基于标签的过滤器小部件。我使用 Angular 作为我的框架。
我一直坚持添加 onSelect 和 onDeSelect 事件,以便在用户选择、取消选择标签时触发。我只能找到这个例子。但我找不到如何用 Angular 做到这一点的方法。
有人可以帮忙吗?
添加一个函数onSelect()并将其指定为 HTML 中的 onSelect 方法
onSelect()
<select kendo-multi-select k-data-source="vm.filterGroup.groupItems" k-select="vm.onSelect"</select>
为我工作。
像这样将处理程序放在选项对象中怎么样:
http://dojo.telerik.com/oDanU