I can remove all items except the last one from the kendo dropdownlist. After the last one is removed, the previous items reappear.
Here is a jsFiddle:
http://jsfiddle.net/lpoellabauer/Jw4Cz/
var dropDown = $("select").data("kendoDropDownList");
var itemToRemove = dropDown.dataSource.at(0);
dropDown.dataSource.remove(itemToRemove);
dropDown.select(0);
Any ideas how to solve this?
HTML:
JS: