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));
}
}