我的kendo.DropDownList
有一个dataBound事件。
我无法设置所选值。
我有以下逻辑:
function onDataBound(e){
var combo = $("#culture").data("kendoDropDownList");
$(combo.dataItems()).each(function () {
console.log(this.Value + ' ' + this.IsDefault);
if (this.IsDefault) {
//need to set here
}
});
}
我该怎么办?