This question is locked. New answers and comments are not allowed.
Hi.
I have grid
Grid show my second column as I want But when I edit row my secons column show like Input field, not like combobox. What I do wrong?
I have grid
@(Html.Kendo().Grid<Worker>().Columns(columns => { columns.Bound(p => p.Id); columns.ForeignKey(p => p.SecId, (List<UserCard>)ViewData["cards"], "Id", "Code").EditorTemplateName("GridForeignKey");}).Editable(editable => editable.Mode(GridEditMode.PopUp) .DisplayDeleteConfirmation(true) .Window(window=> window.Width(470)) ))GridForeignKey - this is from Views/Shared/EditorTemplatesGrid show my second column as I want But when I edit row my secons column show like Input field, not like combobox. What I do wrong?