Webix Jet issue can't load js file

Hi support,

I have a serious issue using webix jet. I have js files for left menu options on which I define another internal js files using define (forms of the corresponding view). Sometimes, and especially when I access the app from external network (slow speed) app is crashing adn I always get a message like:

Can’t load views/forms/_frmView1

Can’t load views/forms/_frmView2

etc…

This happens only on slow loading. The frmViews are loaded using define. Is there a problem with underscore file naming?

Thank you,
Thanasis

try to increase requirejs waitSeconds:

require.config({
    waitSeconds: 60
});

http://requirejs.org/docs/api.html#config-waitSeconds

Hi, do you need to apply on each webix jet javascript file or you can define on app.js ? How you can check if the property value has applied ?

@avacondios
require.config is applied once at beginning of main module.
or can be applied even before loading of requirejs.

var require = {
    waitSeconds: 60
};
before <script src='requirejs.js' data-main='main'></script>

http://requirejs.org/docs/api.html#config