ARIA启用组合框给了我
每当我点击触发器时,在Firefox中TypeError:a未定义
。显然,单击触发器时出现错误,不会显示任何数据。
禁用ARIA,效果很好。
在Chrome中,我收到此错误
Uncaught TypeError: Cannot read property 'isVisible' of undefined ext-aria.js:1
Ext.define.getErrorTipOwner ext-aria.js:1
Ext.define.onFocus ext-aria.js:1
Base.implement.callParent ext-all-debug.js:4266
Ext.define.onFocus ext-all-debug.js:87675
Base.implement.callParent ext-all-debug.js:4266
Ext.define.onFocus ext-all-debug.js:92499
Ext.define.onTriggerClick ext-all-debug.js:97364
Ext.define.onTriggerWrapClick ext-all-debug.js:92583
(anonymous function) VM122:6
wrap
再次Firefox'错误:
TypeError: a is undefined
...rm.FieldContainer",ariaRole:"group",ariaGetEl:function(){return this.getTargetEl...
在使用ext-aria-debug.js时,错误在以下
TypeError: tip is undefined
if (tip.isVisible()) {
这是错误的地方:
getErrorTipOwner: function() {
var tip = this.tip;
if (tip.isVisible()) {
return tip.ownerField;
}
return null;
},