basememara
22 Jan 2012, 5:43 AM
I would like to create application wide functions so my controllers and views can use them. However, it is saying that my functions are undefined when I try to use them from other classes. This is what I am trying to do:
Ext.application({
name: 'MyApp',
someFunction: function(data) {
alert(data.something);
}
});
Then in my controller I try to do this: MyApp.someFunction(data), but it gives me this error:
Uncaught TypeError: Cannot read property 'fn' of undefined
What am I doing wrong?
Ext.application({
name: 'MyApp',
someFunction: function(data) {
alert(data.something);
}
});
Then in my controller I try to do this: MyApp.someFunction(data), but it gives me this error:
Uncaught TypeError: Cannot read property 'fn' of undefined
What am I doing wrong?