Webix Jet issue starting on IE11

Hello all,

when starting app on IE11 it fails and on console I get:

SCRIPT5007
because of the file of jet core.js(425,3)
app.show(app.config.start);

which dictates that app.config.start is null (config properly exists)

I would appreciate if there is a quick fix for this behaviour on IE.

Thanks,
Thanasis

Hello,

We did not succeed in repeating the problem from our side. However, could you please double check that you’ve defined the start page for you application correctly (app.config.start)?

Your app.js file in the root folder of the Jet project should contain the definition like this:

var app = core.create({
	id: "Some", 
	name: "Some",
	version:	"0.1.0",
	start: "/top/start" //start page
});

The start page points to the url that will be loaded initially.

Hi Helga,

Can’t fix the error.

My app config is like this:

var app = core.create({
        id: "",
        hasLogin: false,
        version: "0.8.3",
        start: "/_login" //start page
});

IE version is 11.608

Thanks

bump