We are using Kendo Dropdown in our project. One of example is:
@(Html.Kendo().DropDownList()
.Name("DELFLG")
.Items(item =>
{
item.Add().Text("Ignore").Value("");
item.Add().Text("Yes").Value("Y");
item.Add().Text("No").Value("N").Selected(true);
}).DataTextField("Text").DataValueField("Value").HtmlAttributes(new { style = "width:130px" })
)
Select last value in drop down and press key on keyboard which is NOT starting character of any list box item, it prompts script error. This is happening in kendo demo also.
http://demos.telerik.com/kendo-ui/web/dropdownlist/index.html
@(Html.Kendo().DropDownList()
.Name("DELFLG")
.Items(item =>
{
item.Add().Text("Ignore").Value("");
item.Add().Text("Yes").Value("Y");
item.Add().Text("No").Value("N").Selected(true);
}).DataTextField("Text").DataValueField("Value").HtmlAttributes(new { style = "width:130px" })
)
Select last value in drop down and press key on keyboard which is NOT starting character of any list box item, it prompts script error. This is happening in kendo demo also.
http://demos.telerik.com/kendo-ui/web/dropdownlist/index.html