Dear Support & freinds
I am using webix jet and need to get vars from url.
for example
https://domain/app.function?id=123456
- to link to this url from webix jet
- to get id value from url
Thank you
Ariya
Dear Support & freinds
I am using webix jet and need to get vars from url.
for example
https://domain/app.function?id=123456
Thank you
Ariya
Config in onurlchange:function contain url parameter.
in case:
http://localhost:4000/#!/ast/_utils.url:id=4
you can get “id” value from config.id
$onurlchange:function(config, url, $scope){
console.log(config.id);
}
Thank you