Here is my Entity Edit Page Code,
@(Html.Kendo().DropDownListFor(x => x.ParentCategoryId).Name("ParentCategoryId").HtmlAttributes(new { style = "width:300px;" }).DataTextField("Name").Value("ID").DataValueField("ID")
.DataSource(source => { source.Read(read => { read.Action("GetCategory", "Category"); }); }))
and i want to set dropdownlist selected item by Model.ParentCategoryId
is it possible dropdownlist.selectedvalue = Model.ParentCategoryId ?