Starting from Webix 8.0 the widget is deprecated. Use a more powerful alternative - the Scheduler.
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:
...
$$("scheduler").load("data/events.php","scheduler");
...
...
webix.ui({
view: "scheduler",
id: "scheduler",
save: "connector->data/events.php"
});
...
Back to top