I have code like this:
Ext.define( 'someClass', {
statics : {
methodA : function( ) { return 'A'; },
methodAB : function( ) {
var A = this.methodA();
return A + 'B';
}
}
} );
I have problem with accessing static methodA.
Can someone help me what would be a proper way to do it ?
functioninstead offuncyion.