1

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?

Supun Wijerathne
  • 11,964
  • 10
  • 61
  • 87

1 Answers1

1

You must have been using previous version of script. use below version

2016.3.1118 kendo.all.min.js

It will surely work.

Regards, Paras

Paras Sachapara
  • 372
  • 3
  • 7