Minicalendar

Hi,

I am using Mini calendar in an HTML container outside the scheduler. In that I am facing problem, while entering into the calendar its not showing the scheduled dates of current month. but if i done some action in that mini calendar like moving to previous month or next month, then its showing current month busy schedule by indicating that particular dates in yellow.

Thanks

Hello,

You need to redraw mini calendar after adding event:

scheduler.attachEvent("onEventAdded", function(id,ev){
    scheduler.updateCalendar();
});

docs.dhtmlx.com/scheduler/api__s … endar.html