This question is locked. New answers and comments are not allowed.
Hi,
I have made an MVC appliction and used the telerik to show Grid .My one of the columns need to be the DropDownlist.
For this I have added the code
columns.Add(c => c.Source )
.Template(o =>
{
%>
<%
=Html.DropDownList("Source", new SelectList(new string[] { "1","2","3","4" }))%>
<%
})
In the Grid it shows the Dropdownlist .But in the Edit mode the Dropdownlist changes to TextBox with no values in it
My code and structure are similiar to
http://demos.telerik.com/aspnet-mvc/Grid/EditingServerSide/ALFKI?Grid-mode=edit
Thanks in Adance
Dnm