I have an instance of a class (e.g Ext.data.Model) myRecord and need to call one of its static methods (e.g getFields()). How can I do that?
myRecord
getFields()
You can also use the self property to get the class:
myRecord.self.getFields();