I'm having a lot of difficulty getting the cascading comboboxes functionality to work. These work as expected when they are independent, but the Child box remains disabled when set up as a cascade (uncommenting the CascadeFrom line). Any help would be appreciated!
@(Html.Kendo().ComboBox()
.Name("Parent")
.DataTextField("Text")
.DataValueField("Value")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("Cascading_Get_Parents", "Home");
})
.ServerFiltering(true);
})
)
@(Html.Kendo().ComboBox()
.Name("Child")
.DataTextField("Text")
.DataValueField("Value")
//.CascadeFrom("Parent")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("Cascading_Get_Children", "Home");
})
.ServerFiltering(true);
})
)