如果有一个网格并且我想控制(从控制器)这个网格的 tbar 中的一些按钮。
我可以找到具有 itemId 属性的按钮,但是如何按类查找按钮,以及需要使用什么类(有 baseCls、cls 等,它们不起作用)?
这是我的控制器代码:
Ext.define("Wtb.controller.Schedule",{
extend:'Ext.app.Controller',
refs:[{
ref:'grid',
selector:'button'
}],
init: function () {
this.control({
'button#remove':{
click:this.Remove
},
'button#refresh':{
click: this.Load
},
'button#save':{ //Buttons with id works fine
click:this.Save
},
'button.period':{ //It can't be found, because here is the class
click:this.changePeriod
}
})
这是按钮片段:
{ //Button with ID
xtype:"button",
itemId:'refresh',
text:"Refresh"
},'->',{ //Button with class. I need some buttons, like this.
xtype:"button",
text:"Period - day",
cls:'period',
value:'day'
}
如何从控制器按类查找按钮?