This is a migrated thread and some comments may be shown as answers.

Multiselect remove item not working properly after filtering

2 Answers 190 Views
MultiSelect
This is a migrated thread and some comments may be shown as answers.
Alina
Top achievements
Rank 1
Alina asked on 15 Jun 2016, 08:32 AM

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

 

2 Answers, 1 is accepted

Sort by
0
Georgi Krustev
Telerik team
answered on 17 Jun 2016, 07:23 AM
Hello Alina,

The described behavior is not a known issue. Would it be possible to send us a repro demo where we can observe the issue? This will help us to narrow the problem down much faster.

Regards,
Georgi Krustev
Telerik
 
Get started with Kendo UI in days. Online training courses help you quickly implement components into your apps.
 
0
Alina
Top achievements
Rank 1
answered on 29 Jun 2016, 08:00 AM

Hello,

 

We are currently using Kendo UI v2015.1.318. If I update to the latest version this issue is not reproducing anymore, so we've currently added a workaround until we make the update.

 

Thank you for your help,

Alina

Tags
MultiSelect
Asked by
Alina
Top achievements
Rank 1
Answers by
Georgi Krustev
Telerik team
Alina
Top achievements
Rank 1
Share this question
or