I am trying to implement deselect event Kendo multi-select component.
This is HTML
<div id="multiselect">
<h4>{{vm.filterGroup.groupName}}</h4>
<select kendo-multi-select
k-data-source="vm.filterGroup.groupItems"
k-select="vm.onSelect"
k-deselect="vm.onDeselect"
k-change="vm.onChange"
style="width: 100%"></select>
</div>
And this is my deselect method inside the controller
vm.onDeselect = function (e: any) {
console.log('something deselected');
};
Any how when I deselect an item deselect event is not fired. All other select and change events worked fine. Any one knows wht's wrong?