How to add an option "All" in kendo dropdownlist.
@(Html.Kendo().DropDownList()
.Name("SampleDDL")
.DataTextField("Name")
.DataValueField("Id")
.DataSource
(
datasource => datasource.Read(read => read.Action("GetNames", "Sample"))
)
.OptionLabel("--- Select ---")
)