I am using Kendo UI 2016 Q1. In this version there I noticed a strange behavior when I want to clear items selected on MultiSelect. I clear them like this:
var
multi = $(
"#test"
).data(
"kendoMultiSelect"
);
multi.value([]);
console.log(multi.value(), multi.dataItems());