我创建了 kendoComboBox
jQuery("#" + id).kendoComboBox(
{
filter: "contains",
change: changecallback
}).trigger("change");
var changecallback = function () {
//var combobox = jQuery("#" + id).data("kendoComboBox");
if (this.selectedIndex == -1) {
this.selectedIndex = 0;
this.trigger("change");
return;
}
this.select(this.selectedIndex);
};
我想要做的是如果在选项中找不到输入的值,则选择第 0 个索引(this.selectedIndex == -1
)。我哪里错了?