Hello,
I have a DropDownList that I would like to cache based on a radio button
Code DropDownList :@(
Html.Kendo().DropDownList()
.Name("orders")
.DataTextField("Companies_name")
.DataValueField("CompaniesId")
.MinLength(3)
.HtmlAttributes(new { style = "width:25%" })
.Template("#= CompaniesId # | #= Companies_name #")
.Height(520)
.Filter(FilterType.Contains)
.DataSource(source =>
{
source
.Ajax()
.PageSize(80)
.Read("Virtualization_Read", "NewUploadAccount");
})
.Events(e =>
{
e.Change("onChange");
})
.Virtual(v => v.ItemHeight(26).ValueMapper("valueMapper"))
)
You can close the ticket