Comment activer/désactiver un bouton de formes sans l'Aide Ext.getCmp() dans extjs4?

Voici le formulaire ci-dessous et je veux accéder à la forme du bouton appliquer à l'intérieur de la forme, sans l'aide Ext.getCmp() et de la définition d'un id pour le bouton:

{xtype : 'form',
url : 'index.php/submitform',
trackResetOnLoad : true,
id : 'generalprofilebasicinformation'+ this.getId(),
listeners : {
//is fired when the form is dirty(field values are modified)
    dirtychange : {
        fn : function(sm) {
    //Here Is my problem:
//How to  access to Apply button or any other buttons defined inside the form???
            var applyButton = this.Button;
   applyButton.enable();}}},
   buttons : [{
            text : 'Apply',
            formBind : true, //only
            //enabled
            //once the
            //form is
            //valid
            disabled : true,} ]}
InformationsquelleAutor Mehdi Fanai | 2012-02-03