The cascading is not working in IE11 when filtering is enabled. The sample below is taken directly from "Edit this example" for http://demos.telerik.com/kendo-ui/dropdownlist/cascadingdropdownlist
I have enabled the filtering on the first dropdown box. In IE11 the child dropdown is not enabled to continue the filtering once an option is selected in the first dropdown. The expected behaviour works fine in Chrome and Firefox.
Sample:
http://dojo.telerik.com/umAjIW/2
Single line added at 06 to enable filter:
01.
$(document).ready(function() {
02.
var categories = $("#categories").kendoDropDownList({
03.
optionLabel: "Select category...",
04.
dataTextField: "CategoryName",
05.
dataValueField: "CategoryID",
06.
filter: "contains",
07.
dataSource: {
08.
type: "odata",
09.
serverFiltering: true,
10.
transport: {
11.
read: "//demos.telerik.com/kendo-ui/service/Northwind.svc/Categories"
12.
}
13.
}
14.
}).data("kendoDropDownList");
IE Version: 11.0.9600.18427
Windows 8.1 Enterprise x64