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.
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/.