Documentation

modal

switches window modality

boolean modal;

Example

webix.ui({
    view:"window",
    modal:true,
    ...//config
});

See also

  • articles
  • Details

    By default, Webix window is not modal and its appearance on the page doesn't prevent from working with the main application.

    If modality is set to true, users ought to perform actions required by this window before going to the main app.

    Back to top