displays the specified date in the mini calendar
calendar | object | the mini calendar object |
new_date | Date | a new date to display in the mini calendar |
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));
The method requires the minical plugin to be activated.