I use a Dropdownlist load on demand and i whant the first value to be empty. I whant to know how to do that or if you plan to add this feature to your control.
Hi mate,
What you could do is download the source code and modify that part and it will do the way you want it.
Go the the source project:
Telerik.Web.Mvc>UI>DropDownList>DropDownListHtmlBuilder.cs
Change this line from : input.Attribute("value", selectedItem.Value.HasValue() ? selectedItem.Value : selectedItem.Text); to :input.Attribute("value", selectedItem.Value.HasValue() ? selectedItem.Value : "");
This is located at the end of the file.