在selected-plugin中搜索

时间:2016-10-11 10:51:43

标签: jquery jquery-chosen

当我在selected-plugin中搜索时 - 它会忽略符号和#34;之间的内容。我该怎么改变它?你能写一些函数吗,我必须改变一些东西。

我找到了功能并改变了它。这是我的代码。

Chosen.prototype.keydown_arrow = function() { //changed here
        var a;
        a = this.result_highlight.nextAll("li.active-result").first();
        a = a.replace(/[^"]/g, "");
        return this.results_showing && this.result_highlight ? (a) ? this.result_do_highlight(a) : void 0 : this.results_show()
    }

我犯了哪个错误? 也许我必须改变另一个功能?

1 个答案:

答案 0 :(得分:0)

您应首先使用参数初始化,如下所示;

<asp:Repeater ID="Repeater1" ...>
    <ItemTemplate>
        <%# Eval("OrderName") %>
    </ItemTemplate>
</asp:Repeater>

Repeater1.DataSource = userInfo.orders;
Repeater1.DataBind();