or
Html.Kendo().DropDownListFor(c => c.SelectedGroup) .BindTo(Model.Groups) .Value(Model.SelectedGroup.Value.ToString()) .HtmlAttributes(new { style = "width: 250px" }) .Render();@(Html.Kendo().DropDownListFor(t => t.AuthorisedByExtraID).DataTextField("Name").DataValueField("ExtraUserID").DataSource(source =>source.Read(read => read.Action("SearchAutocompleteEmployees", "Search").Data("onAutoCompleteAdditional").Type(HttpVerbs.Post)).ServerFiltering(true)).HtmlAttributes(new { style = "width: 250px" }).Enable(false).AutoBind(true).BindTo(Model.GroupEmployees).Value(Model.AuthorisedByExtraID.HasValue ? Model.AuthorisedByExtraID.Value.ToString() : "0").CascadeFrom("SelectedGroup"))
How can I enable the second drop-down to bind to Model.AuthorisedByExtraID when it exists, then when group changes, to load the contents via ajax? Thanks, Gabor

@(Html.Kendo().Grid(Model.Products) .Name("FabricGrid") .Columns(columns => { columns.Bound(p => p.Fabric); columns.Bound(p => p.Pattern); columns.Bound(p => p.Description); columns.Bound(p => p.UPrice); columns.Bound(p => p.Qty).Width(150); columns.Bound(p => p.Total); columns.Command(command => command.Edit()).Width(110); columns.Command(command => command.Destroy()).Width(110); }) .Scrollable() .Sortable() .Editable(editable => editable.Mode(GridEditMode.InLine)) .DataSource(dataSource => dataSource .Ajax() .ServerOperation(false) .Model(model => model.Id(p => p.ProductId))
.Events(events => events.Error("error_handler")) .Update(update => update.Action("Product_Update", "ShoppingCart")) .Destroy(destroy => destroy.Action("Product_Delete", "ShoppingCart")) ))