我的页面上有两个 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
}
}
});
});
};