fullScreen

for mobile devices; makes the application take all available screen space

void fullScreen();

Example

webix.ui.fullScreen();

Details

To make an app work correctly in the full-screen mode you should fulfil 2 requirements:

  1. All the code must be placed into webix.ready() to ensure that it will be called just after the page has been completely parsed
  2. webix.ui.fullScreen() must be placed before components' definitions, i.e. before webix.ui() blocks.
webix.ready(function(){
  webix.ui.fullScreen();
  webix.ui({
    //...
  });
});
Back to top