@(Html.Kendo().DropDownTree() .Name("LocationID") .Label(label => { label.Content("Select an Location..."); }) .DataTextField("Name") .DataValueField("id").Value(Model) .HtmlAttributes(new { style = "width: 100%" }) .Filter(FilterType.Contains) //.LoadOnDemand(true) .DataSource(dataSource => dataSource.Read(read => read.Action("GetLocationListForDDTree", "DataService") ) ))
DropDownTree filter searches all nodes independently.
So when a child matches, it shows only that node, buti required if filter parent node list out all child node? is possible
