renderCalendar

creates a mini calendar

HTMLElement renderCalendar(object config);
configobjectthe calendar configuration object
HTMLElementthe HTML element of the calendar

Example

const calendar = scheduler.renderCalendar({
    container:"cal_here", 
    navigation:true,
    handler:function(date, calendar){
        scheduler.setCurrentView(date, scheduler._mode);
    }
});

Related samples

Details

The method requires the minical plugin to be activated.

The configuration object can have the following properties:

const calendar = scheduler.renderCalendar({
    container:"for_calendar",
    date:new Date()
});
//
const calendar = scheduler.renderCalendar({
    position:"some_id",
    date:new Date()
});
//
const calendar = scheduler.renderCalendar({
    position: { left: 100, top: 50 },
    date:new Date()
});
See also
Back to top