This question is locked. New answers and comments are not allowed.
Is it possible to have a dropdown inside a grid's DetailView? i'm following the client detail template demo and very unsure of adding a dropdown inside the detail template. for example below i'd like th countries to show in a dropdownlist
.
"<div class='employee-details'>" + "<ul>" + "<li><label>Birth Date:</label><#= $.telerik.formatString('{0:d}', BirthDate) #></li>" + "<li><label>Country:</label>DROPDOWN HERE</li>" + "<li><label>City:</label><#= City #></li>" + "<li><label>Address:</label><#= Address #></li>" + "<li><label>Home Phone:</label><#= HomePhone #></li>" + "</ul>" + "</div>" + "</ul>" + "</div>"