Kendo.Mvc.UI.Fluent.DropDownTreeBindingSettingsBuilder
Defines the fluent interface for building DropDownTreeBindingSettingsBuilder
Methods
Enabled(System.Boolean)
Enables or disables binding.
Example (ASPX)
<%= Html.Kendo().DropDownTree()
.Name("DropDownTree")
.DataBinding(dataBinding =>
{
dataBinding.Ajax().Select("Index", "Home").Enabled((bool)ViewData["ajax"]);
})
%>