I have a MultiSelect control set up like this:
And I noticed that if I type in a value that doesn't match any records in the database, it keeps on sending ajax requests. Typing something that matches my criteria stops any further requests. Is there a reason why it would behave like that?
01.
@(Html.Kendo().MultiSelect()
02.
.Name("myCombo")
03.
.DataTextField("Text")
04.
.DataValueField("Value")
05.
.AutoBind(false)
06.
.DataSource(source =>
07.
{
08.
source.Read(read =>
09.
{
10.
read.Action("_SearchAction", "Controller");
11.
})
12.
.ServerFiltering(true);
13.
})
14.
)