I am trying to bind a list of SelectList
Items to a Kendo dropdown in jquery using dropDown.setDataSource(result)
event. But the issue is, the data displayed in the drop-down is showing as [object object]
.
$(document).ajaxStop(function () {
var exportTypeDropDown = $("#exportTypeDropDown").data("kendoDropDownList");
if (dropDownLoaded == false && exportTypeDropDown!=null) {
dropDownLoaded = true;
var url = "@Url.Action("GetExportTypes", UiControls.ControllerName)";
$.ajax({
url: url,
type: "POST",
traditional: true,
success: function (result) {
exportTypeDropDown.setDataSource(result);
}
});
}
});
Try this, This is just example,
Script
Controller
It's perfectly working.