updateCalendar
Description
Zeigt das ausgewählte Datum im Mini-Calendar an
updateCalendar: (calendar: any, new_date: Date) => void
Parameters
calendar- (required) object - die Instanz des Mini-Calendarsnew_date- (required) Date - das Datum, das im Mini-Calendar angezeigt werden soll
Example
var calendar = scheduler.renderCalendar({
container:"cal_here",
navigation:true,
handler:function(date){
scheduler.setCurrentView(date, scheduler._mode);
}
});
...
scheduler.updateCalendar(calendar, new Date(2013,01,01));
Details
Hinweis
Die Methode erfordert, dass das minical Plugin aktiviert ist.
Related Guides
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.