如果在kendoui组合框中找不到值,如何选择第0个索引

时间:2012-12-11 07:05:55

标签: combobox indexing kendo-ui

我创建了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)。我哪里错了?

2 个答案:

答案 0 :(得分:0)

使用select方法。您可以使用ComboBox的API演示进行尝试。

答案 1 :(得分:0)

试试这个:

$combobox.select(0);