본문 바로가기

js/jQuery

kendo ui jquery dropdownlist option select



var custType = "선택값";

var dropdownlist = $("#cust_type").data("kendoDropDownList");
dropdownlist.select(function (dataItem) {
    return dataItem.value === custType;
});