Starting from Webix 8.0 the widget is deprecated. Use a more powerful alternative - the Scheduler.
Mobile Scheduler can be used in 2 modes:
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");
});
Back to top