0


我的页面上有两个 Kendo ui 多选元素,用于从列表中选择商店。在选择事件中,我有一个函数调用,我在其中检查所选商店是否在另一个列表中。

如果所选项目已分配给另一个列表,我会提示确认。当用户单击确定时,就可以了,当单击取消时,我必须从多选元素中删除所选项目。

这是我的功能:

function checkStoreSelection(e) {

    var selectedStore = this.dataSource.view()[e.item.index()];
    var selectedStoreId = selectedStore.Id;

    $.each(surveysData, function (index, surveyVal) {
        // get each store
        $.each(surveyVal.Stores, function (storesIndex, storesVal) {
            // check if a store already assigned to another survey
            if (selectedStoreId == storesVal.DBId) {
                var answer = confirm('Some text here ... ');
                if (answer) {
                    // nothing todo here
                } else {
                    // have to remove the selected item
                }
            }

        });
    });

};
4

2 回答 2

1

您可以从数据源中删除项目dataSource.remove(item);

检查这个例子 http://jsfiddle.net/derickbailey/D4g8S/

于 2013-06-20T11:05:42.683 回答
0

该死的傻瓜 - 简单的答案:

e.preventDefault();

做我需要的:-/
对不起。

于 2013-06-20T14:31:34.940 回答