locale

webix.locale([see official doc])

webix.locale helper.

Please look into the linked official documentation.

References

helpers
assert_core_ready(), event(), ready().

External references

Official documentation page.

Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
webix.locale=webix.locale||{};


webix.assert_core_ready();


webix.ready(function(){
    webix.event(document.body,"click", function(e){
        webix.callEvent("onClick",[e||event]);
    });
});