js/jQuery

kendo ui jquery dropdownlist option select

건빵쥔광이씨 2020. 11. 17. 23:04
var custType = "선택값";

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