This question is locked. New answers and comments are not allowed.
I have experimented with a variety of different ways, but no success yet.
I've tried handling .ClientEvents(ce => ce.OnEdit("Grid_OnEdit")).
I've tried EditorTemplates for the View like
but no luck.
Is there an example of MVC 3 Razor View of Grid that has columns with dropdownlists where the default selected value can be set for the initial default values of new rows necessary for insert of new row?
I've tried handling .ClientEvents(ce => ce.OnEdit("Grid_OnEdit")).
I've tried EditorTemplates for the View like
@(Html.Telerik().DropDownList() .Name("EntityTypeName") .BindTo(new SelectList((IEnumerable)ViewData["EntityTypeList"],ViewData["EntityTypeDefault"])))Is there an example of MVC 3 Razor View of Grid that has columns with dropdownlists where the default selected value can be set for the initial default values of new rows necessary for insert of new row?