When the user searches for a value in the MultiSelect and then selects an item, the search value persists.
Even when an item is selected, the search value still appears
When selection is performed, the search value should be cleared
select: function (e) {
e.sender.input.val("");
},
Dojo - https://dojo.telerik.com/JCwOdXsL
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.