Can't resolve “c is not a constructor” error
I'm trying to build a very very basic "proof of concept" app using ExtJS but i'm having a very hard time. All i want is two grids getting their data from a remote JSON file, but no matter what i do i keep on getting the error that's in the subject. Here is my simple code: app.js: Ext.Loader.setConfig({enabled:true}); Ext.application({ name: 'GeoSniffer', autoCreateViewport: true, models: ['Location', 'Client'], stores: ['Locations', 'Clients'], }); Viewport.js Ext.define('GeoSniffer.view.Viewport', { extend: 'Ext.container.Viewport', layout: 'fit', requires: [ 'GeoSniffer.view.ClientsList',