I'm using the Knockout-Kendo MultiSelect control. If I select a value from the list, then type in the second value and click enter, the previously entered values are removed.
VIEW
<select data-bind="kendoMultiSelect: { data: choices, value: selectedChoice }"></select>
Selected: <strong data-bind="text: selectedChoice"> </strong>
VIEW MODEL
var ViewModel = function() {
this.choices = ko.observableArray(["apple", "orange", "banana"]);
this.selectedChoice = ko.observable();
};
ko.applyBindings(new ViewModel());
There is a working example on the Knockout-Kendo Site. HERE
See the Fiddle below: