New to Kendo UI for jQuery? Download free 30-day trial

DropDownList Cannot Preselect the Drop-Down ID of the Current Grid Row

Environment

Product Progress® Telerik UI® Grid for ASP.NET Core
Kendo Version 2017.2.621

Description 

I cannot get the DropDownList to preselect the dropdown ID of the current row. How can I bind it to the column value when the Grid for ASP.NET Core is in edit mode?

Steps to Reproduce

This is a logged issue. The Core wrappers duplicate the property name when the DropDownList() and Name() declarations are used. For more information, refer to this issue.

Suggested Workarounds

Kendo UI does not provide a built-in solution for achieving this behavior. However, you can still work around the issue by using a .DropDownListFor(m => m) definition.

@model Project.Models.StateProvinceRegionViewModel

@(Html.Kendo().DropDownListFor(m => m)
    .DataValueField("Id")
    .DataTextField("Name")
    .DataSource(d => d
        .Read(r => r.Action("GetStateProvinceRegions", "Admin"))
    )
)
In this article