I have this particular code snippet in a JS file:
var fileView = Ext.create('My.ext.File.Panel', {
style: 'border:none;',
loadMask: {
msg: 'Please wait ...'
...
And when i search i can see that My.ext.File.Panel appears in the requires config of various custom components.
But i am not able to find Ext.define('My.ext.File.Panel' anywhere in the source.
Can anybody shed some light or point me to how i can find out the source for this custom panel - My.ext.File.Panel. I have tried debugging with dev-tools in chrome and firefox but could not get it, not sure where to look.
Thank You
definea class without usingExt.define? - Prakash K