Hello,
When adding multiple elements for the following MultiSelect by typing their value (so filtering applies), some items aren't able to be removed.
@(Html.Kendo().MultiSelect()
.Name("msAssignContacts")
.Placeholder("Add new..")
.DataValueField("Id")
.DataTextField("FullName")
.DataSource(source => {
source.Read(read => {
read.Action("GetContacts", "UserProfile")
.Data("additionalParams");
})
.ServerFiltering(false);
}))
It seems to happen randomly, so some of the items can be removed, others cannot.
It's not reproducing when items are added only by mouse and it happens for all the MultiSelects in the project.
Thank you