when am used DropDownTree control i am used below sample format
@(Html.Kendo().DropDownTree()
.Name("ID")
.Label(label =>
{
label.Content("Select an ID...");
})
.DataTextField("Name")
.DataValueField("id").Value(12)
.HtmlAttributes(new { style = "width: 100%" })
.Filter(FilterType.Contains)
//.LoadOnDemand(true)
.DataSource(dataSource => dataSource.ServerFiltering(true).Read(read => read.Action("GetLocationListForDDTree", "Home") ) )
)
when enable loadondemand it works filter but value not show selected . if am command the loadondemand its show the selected value but filter not working . i need both options kindly advice this
