Scheduler > Calendar > Mini Calendar with Recurring events

Hello,

what is the way to prevent displaying the recurring event in all days of mini calendar?

I am using this demo page code.
docs.dhtmlx.com/scheduler/sampl … duler.html

If my event start on every monday, then it display the whole month as busy with events (yellow hightlights) until end date.

Hi,

You can disable loading rec events into scheduler when onEventLoading fires

scheduler.attachEvent("onEventLoading", function(ev){    
	if(ev.rec_type)
      return false;      
    return true;
})

Demo docs.dhtmlx.com/scheduler/snippet/b3b91a30

That will just hide all recurring events. I want to display recurring events but only for the date it is applicable.

Say, you create recurring event on Monday, Friday, Saturday every week, then it mini calendar display it for whole week Monday to Saturday.