0

我正在使用 kendoUI 自动完成。要以带有“x”标记的框格式显示每条记录,我已经实现了

$("#roleAuto").kendoAutoComplete({
                       dataSource: roledata,
                       filter: "startswith",
                       placeholder: "Select Role...",
                       select: function (e, ui) {
                           alert("hi");
                           $(".roleSelection:checked").each(function () {
                               var role = $(this).attr("data-name"),
                                     var  span = $("<span>").text(role),
                                        a = $("<a>").addClass("remove").attr({
                                        title: "Remove " + role
                                        }).text("x").appendTo(span);
                               alert(role);
                               span.insertBefore("#roleAuto");
                                $("#Roles").click(function () {
                                 $("#roleAuto").focus();
                                 });
             $(".remove", document.getElementById("Roles")).live("click", function () {
                     $(this).parent().remove();
                     if ($("#Roles span").length === 0) {
                     $("#roleAuto").css("top", 0);
                           }
                       });
                   });

我能够在带有“x”符号的框中显示每条记录。如果我单击“x”标记,我可以删除记录,我想要删除的项目 ID 值。我怎样才能得到这个?

4

1 回答 1

1

有一种自动完成的方法(以及许多其他数据绑定小部件):

kendo.ui.widget.dataItem(index);

该事件的一个方法称为:

event.item.index();

自动完成方法的文档:自动完成文档

因此,作为 select 函数的第一行,您可以编写:

var dataItem = this.dataItem(e.item.index());

点击事件的实时方法如下所示:

$(".remove", document.getElementById("Roles")).live("click", function () {
    alert(dataItem.Id); //Or in whichever property your Id is stored.
    $(this).parent().remove();
    if ($("#Roles span").length === 0) {
        $("#roleAuto").css("top", 0);
    }
});
于 2012-10-17T07:32:30.927 回答