我的问题是我在更改事件的filterA
函数中设置了值,但是当我在this.datasource.read()
函数中调用filterB
时,我没有获得更新的值。到目前为止我的代码:
function FilterA(element) {
element.kendoDropDownList({
dataSource: {
transport: {
read: '@Url.Action("Filter_A")'
}
},
change: function (e) {
var index = 1;
var temp = "";
$(".k-input").each(function () {
if (index === 3) {
temp = $(this).text();
}
index++;
});
index = 1;
$('#hdntemp').val(temp);
},
optionLabel: "--Select Value--"
});
}
function FilterB(element) {
element.kendoDropDownList({
dataSource: {
transport: {
read: '@Url.Action("Filter_B")' + "?temp=" + $('#hdntemp').val()
}
},
open: function (e) {
this.dataSource.read();
},
optionLabel: "--Select Value--"
});
}
答案 0 :(得分:0)
我找到了解决方案 在oncreate函数中全局保存数据源元素,并在onchange函数中调用函数以获得级联效果。