Hello,
here's the part of the code from the template...
here's the part of the code from the template...
@(Html.Kendo().DropDownListFor(model => model.EmailType)
.Name("EmailType")
.BindTo(Enum.GetNames(typeof (EmailTypeEnum)).ToList())
)
When the popup is shown from an edit command, the value that is selected does not show in the grid after I click "Update". I can see the orange indicator that the fields is being edited in the grid, but the value is not shown.
If I do need to use a datasource object, can I use emuns as the underlying data type? If so please show an example.
Thanks
)