Webix Jet scope and $scope

Hi,
Webix Jet looks really impressive.
Referring to the gitBook document of Webix- JetI am a bit confused, in some places scope is used and while in other places $scope is used. Will you please clarify.
Regards,
Suresh

Hi,

That is the same object, then you need to access it as a property of a view, it will be view.$scope. There are cases when the same object is available as parameter of function, in such case it can have any name ( name of parameter ), samples in docs are using “scope” name.

Probably we will update docs to prevent a confusion

Now we have

$oninit:function(view, scope){
    scope.on(records.data, "onDataUpdate", function(){
        popup.show();
    });
}

but it can be written the next as well

$oninit:function(view, $scope){
    $scope.on(records.data, "onDataUpdate", function(){
        popup.show();
    });
}

Thanks maksim!
Is Webix Jet ready to use? Is the document final yet?

We are using it in our own projects, so it is quite stable.

The API itself is minimal and will not be changed anymore, as for documentation we plan to update it with more details and examples.
Also, there are few plugins and few advanced use-cases which are not described yet.

Thanks! I hope you will announce or include in main website when the documentation is ready.