Hi,
i have dhtmlxscheduler_minical working with dhtmlxScheduler, but when i change the month using the navigation from the minical, there pops up an extra month underneath the minical after i click on a onther place on the page…
how can i fix this?
thnx
i replaced the file, still multiplies…
Be sure that old version is not cached.
If problem still occurs - did in occurs even for default samples or only for your app?
i tried the hard refresh, still doesnt work.
this is my code:
function render_calendar(curr, date){
if (curr)
scheduler.destroyCalendar(curr);
return scheduler.renderCalendar({
container:"cal_here",
date:date,
navigation:true,
handler:function(date){
scheduler.setCurrentView(date, scheduler._mode);
}
});
}
Try to change your code as
[code] scheduler.destroyCalendar(document.getElementById(“for_cal”).firstChild);
scheduler.renderCalendar({
container:"for_cal",
date:this._date,
navigation:true,
handler:function(date){
scheduler.setCurrentView(date);
}
}); [/code]