团队,
我有一个问题,我不想在某个标志上展开组合框并想显示警报消息。
EXTJS 中没有像 onClick 这样的事件,所以我尝试使用焦点事件,但组合框仍在扩展。
代码
focus:function() {
if(this.store.baseParams.donotExpandFlag) {
alert("I should not expand this combo");
// What to do here and out side of IF block so that there is conditional expansion
}
}