我有像这样的'tbar'的简单'gridpanel'
Ext.define('Ext.abc.grid', {
extend: 'Ext.grid.Panel',
type:1,
tbar:[
{
text:'title1',
class :'a1',
handler:function(type){
if (this.type == 1) { // button not 1
Ext.query(".a2").setDisabled(false);
}
},{
text:'title2',
class :'a2',
handler:function(type){
if (this.type == 1) { // button not 1
Ext.query(".a1").setDisabled(false);
}
}
]
});
我尝试将类(a1)添加到按钮title1和一些title2,但是当我得到类时
Ext.query(".a1").setDisabled(false);
它不工作
当我点击title1时我无法获得type = 1,我使用this.type但结果是'button'而不是1
我该怎么做,谢谢