I have a Telerik Drop-down list which I want to populate based on what is selected for one other Drop-down list.
For eg:
If I select "Numbers" for DDL1 then I wan to display 1 through 10 in DDL2, If I select "Alphabets" for DDL1 then I want to display a through z in DDL2.
Here is how I populate my DDL1:
<%= Html.Telerik().DropDownList().Name("Type")
.HtmlAttributes(new { @id = "Type" })
.Items(items => {
items.Add().Text("").Value("");
items.Add().Text("Numbers").Value("Numbers");
items.Add().Text("Alphabets").Value("Alphabets");
})%>