Deprecated

Starting from Webix 8.0 the widget is deprecated. Use a more powerful alternative - the Scheduler.

Read-only Mode

Mobile Scheduler can be used in 2 modes:

  • Edit (by default)
  • Read-only

To activate the read-only mode you should set the scheduler.config.readonly option to true. Beware! The option should go before the code line with scheduler initialization.

From now on, users can't modify events. The 'Add', 'Edit', 'Delete event' buttons, allowing to do it, will be hidden.

scheduler.config.readonly = true;
webix.ready(function(){
    webix.ui.fullScreen();
    webix.ui({
        view: "scheduler",
        id: "scheduler"
    });
    $$("scheduler").load("../php/events.php","scheduler");
});

Related sample:  Read-only

Back to top