Planned
Last Updated: 03 Feb 2026 09:10 by ADMIN
Scheduled for 2026 Q1 (Feb)

Bug report

When the user searches for a value in the MultiSelect and then selects an item, the search value persists.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/iUvrZpNm
  2. Type something (for example: 'se') in the MultiSelect and select an item

Current behavior

Even when an item is selected, the search value still appears

Image

Expected/desired behavior

When selection is performed, the search value should be cleared

The issue is a regression starting with 2025.4.1321

Workaround:

   select: function (e) {
            e.sender.input.val("");
    },

Dojo - https://dojo.telerik.com/JCwOdXsL

Environment

  • Kendo UI version: 2025.4.1321
  • Browser: [all ]
Planned
Last Updated: 10 Sep 2025 07:59 by ADMIN
Scheduled for 2026 Q1 (Feb)
Created by: Janick
Comments: 2
Category: UI for ASP.NET Core
Type: Feature Request
5

Consider the use of TextWriter async methods for the HTML Helpers, for example the WriteInitializationScript methods.  In certain scenarios the use of the synchronous methods causes an exception: System.InvalidOperationException: Synchronous operations are disallowed. Call WriteAsync or set AllowSynchronousIO to true instead.

This can be resolved by explicitly enabling synchronous operations

services.Configure<IISServerOptions>(options =>
    {
        options.AllowSynchronousIO = true;
    });

though synchronous operations have been disabled by default at framework level as of .NET 3.0.

Planned
Last Updated: 07 Jun 2024 15:18 by ADMIN
Hi, I have the following option in Visual Studio 2022 setup to use Global F7 keypress to toggle razor page view between html & code pages.  After an update with the Progress Telerik UI VS Extensions this keypress no longer worked and seemed to be ignored.

Disabling the Progress Telerik UI VS Extension enables the keypress to function again, disabling it blocks the keypress.

Interestingly I have Global CTRL+F7 setup to toggle in web form pages and this works ok with the extensions enabled.