Completed
Last Updated: 18 Dec 2023 12:43 by ADMIN
Release R1.2024-Increment.2(31.Jan.2024)
Mr
Created on: 08 Oct 2022 16:45
Category: Kendo UI for jQuery
Type: Bug Report
0
For Bug : While Add new In Multidrop down selection Search Some text and click on clear button and than add on Add new button now the Text Is saved.

Hello Kendo UI Team, 

I found one bug regarding the multidrop down selection while we want to add new on search text we enter some text and than after click on clear button and click on the add new button text is saved.

I attached one video for the same so you can easily find the issue.

Thanks & Regards.

Attached Files:
1 comment
ADMIN
Dimitar
Posted on: 14 Oct 2022 11:47

Hello,

Thank you for your feedback. This is a known issue - https://github.com/telerik/kendo-ui-core/issues/4469 . I increased its priority based on your report for it. As a workaround we may handle the click event of the clear button and call MultiSelect's search method with empty string - Dojo snippet :

        $(".k-multiselect .k-clear-value").click(function() {
          var multiselect = $("#products").data("kendoMultiSelect");
          multiselect.search("");
        })

Thus, the popup shows all items as expected and the noDataTemplate will not be present anymore - the add new item button will not be available for clicking.

Regards,
Dimitar
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.