How to use URL parameters in Webix Jet

I’m trying to migrate from old Webix Jet to new 1.x Webix jet.

I can’t figure out the correct way to access URL parameters.

The snippet contains the old code that used to work with the old Webix Jet and my attempt at getting to work with Webix Jet > 1.

https://snippet.webix.com/ignlsyez

Hello,

As far as I can see, everything is working from our side: Code Snippet

Url (see app configuration, the start url):

start:"/top/start?id=test"

StartView:

urlChange(view, url){
	webix.message(url[0].params.id)
}

This is my URL http://localhost:9090/#!/top/report:JobId=1:AttemptId=1

What should it become?

Okay I was using a variable without calling var first.

There was no console log message. I was able to see the message by using webix_debug.js and changing npm run build to not use production environment.

Thank you for your help.

there was no console log message.

Yep, in most cases Jet app will fail silently (good for production), unless debugging tools are used. Please, check the related article to enable them.