Question

When my Ext Js application loads up, I get an error for a missing class. I checked the console's Net tab and found out that the files are loaded in wrong order. Meaning the class which requires another class to work is loaded after that class. Is there a way to change the loading order of files in Ext Js?

Was it helpful?

Solution

Use a requires config in the depending class:

Ext.define('Depender', {
    requires: 'Dependee',

    // ...
});

This will tell the loader, that class Dependee must be loaded before class Depender can be instantiated.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top