for mobile devices; makes the application take all available screen space
webix.ui.fullScreen();
To make an app work correctly in the full-screen mode you should fulfil 2 requirements:
webix.ready(function(){
webix.ui.fullScreen();
webix.ui({
//...
});
});
Back to top