When i have more than one dropdownlist on the page with ".Filter("contains")" but with unique names (ie "Custodian_1", "Custodian_2",...) then when i click on one and make a selection and then click on another one and type "doe", then both dropdowns immediately reset to no selection made.
@(Html.Kendo().DropDownListFor(m => m)
.Name("Custodian")
.DataTextField("Name")
.DataValueField("LongId")
.OptionLabel("Start typing to select user...")
.Filter("contains")
.HtmlAttributes(new { style = "width:100%;" })
.DataSource(source =>
{
source.Read(read =>
{
read.Action("UserSelector_Read", "Users");
})
.ServerFiltering(true);
})
)