Deprecated

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

Tips for Users of dhtmlxScheduler

1) Webix Scheduler as well as dhtmlxScheduler allows defining date formats. The details are given in the article Date Formats.

2) Scheduler supports multi-day and recurring events, too.

3) Webix Scheduler also allows applying templates to its views. Read more in the article Specifying Templates.

4) Elements' sizes are customizable, too. This feature is described in the Sizing Elements article.

5) If you are going to use dhtmlxConnector to load and save data, you should do the following:

  • define "scheduler" as "DataDriver" in the load method:
...
$$("scheduler").load("data/events.php","scheduler");
...
  • set the save property of the scheduler to apply connector for data saving:
...
webix.ui({
    view: "scheduler",
    id: "scheduler",
    save: "connector->data/events.php"
});
...
Back to top