The mobile scheduler can be used in 2 modes:
To activate read-only mode you should set the option scheduler.config.readonly to true. Beware, the option should go before the code line with scheduler initialization.
From now on, users can't modify events. The buttons 'Add', 'Edit', 'Delete event' allowing to make it will be hidden.
scheduler.config.readonly = true; dhx.ready(function(){ dhx.ui.fullScreen(); dhx.ui({ view: "scheduler", id: "scheduler" }); $$("scheduler").load("../php/events.php","scheduler"); });
Related sample: samples/07_mobile/10_readonly.html