access without creation of instance
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Ext.define('Student', { name : 'unnamed', getName : function(){ alert('Student name is ' + this.name); }, constructor : function(studentName){ if(studentName) this.name = studentName; }, statics : { getSchoolName : function(){ return "XYZ"; } } }); //call static method alert(Student.getSchoolName()); |