我在我的项目中使用 Extjs 4.1。所以 view.js 中的每个 Extjs 组件,我都可以使用 Ext.getCmp 调用它,并在我的代码中的任何地方使用它。
我的问题是菜单检查项目。我找不到调用每个项目的方法,并在 view.js 之外的任何地方检查选择!我需要在项目的另一部分检查这些项目,但我不知道该怎么做!
我的处理程序:
myHandler: function (menucheckitem, checked, opts) {
switch (menucheckitem.getId ()) {
// Here handles the first
case 'first':
if (checked) {
console.log ('First checked!');
goToFunction ();
}
break;
// Here handles the second
case 'second':
if (checked) {
console.log ('Second checked!');
goToFunction ();
}
break;
default:
console.log ('Whatever!');
}
}
如您在上面看到的,如果我想将每个 menucheckitem 发送到另一个 js 文件并检查选择.. 我该怎么做?