I have a dropdown editor in the partial view:
@(Html.Kendo().DropDownListFor(m => m.DepartmentId)
.DataTextField("Name")
.DataValueField("Id")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("GetDepartments", "Home");
});
})
)
Which I use in grid by specifying partial view's file name:
.EditorTemplateName("Department")