0

如果有一个网格并且我想控制(从控制器)这个网格的 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'
}

如何从控制器按类查找按钮?

4

1 回答 1

4

查看 ComponentQuery 的文档:http ://docs.sencha.com/ext-js/4-0/#!/api/Ext.ComponentQuery

这应该为您提供正确的按钮:

'button[cls=period]'
于 2012-04-04T23:22:02.320 回答