Skip to main content

Posts

Showing posts with the label Refresh Kendo UI DropDownList

Refresh Kendo ui Dropdownlist

I am going to share the code sample for Refresh Kendo UI DropDownList which are given below. //Refresh the Kendo UI DropDownList. function refreshToTenantDropDownList() {     var dropdown = $( "#ddlTenants" ).data( "kendoDropDownList" );     if (dropdown) {         dropdown.select(dropdown.ul.children().eq(0));     } }