Two easy ways to do this. First it is from the web browser console.
In ExtJS 3.x:
Ext.version;
In ExtJS 4.x:
Ext.getVersion('extjs');
Or you can look in ext-all-debug.js and check the version number at the top of the script. In all versions related to 1.0, they include the version number at the top of the ext-all-debug script, it can be called something else, but just look around your application hierarchy.
source
share