好的,这让我再次疯了。我试图从组合框中获取所选值,以便我可以根据用户选择使用正确的数据更新网格。我该怎么做?
我在MVC模型中使用extjs 4。这是我的代码:
我在视口内的init:
init: function() {
this.control({
'viewport > combobox': {
select: this.onChangeStacker
}
});
},
// method with pseudocode of what I want to do
onChangeStacker: function(){
selected = getSelection;
switch selected
case == stk1
load stk1
case == stk2
load stkd
}
});
答案 0 :(得分:2)
this.control({
'viewport > combobox': {
change: function(cmp) {
var value = cmp.getValue();
.
.
.
}
}
});
文档: