calendar

defines the configuration for all calendars in the widget

object calendar;

Example

webix.ui({
    view:"daterange",
    //calendar properties
    calendar:{
        weekNumber:true,
        monthHeader:false
    }
});

Details

This object can contain any of the available Calendar properties. Use it to set specific configuration for all calendars in the DateRange widget.

Back to top