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?

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top