Required Asp.Net schudler with mini calendar full sample

After several attemos and many hours I could not add the mini calendar to my default.aspx file and it was not displayed on page.
The following is all that was addwd on server page (.cs):

Scheduler.Calendars.AttachMiniCalendar();
var cal = new MiniCalendar(“cal_here”);// initialization
cal.Navigation = true;// configuration
Scheduler.Calendars.Add(cal);// adding to the page

On the client side:

What am I missing?

The constructor of MiniCalendar takes the id of container node.
This code should work with your markup

var cal = new MiniCalendar("dhtmlxCalendar");// initialization cal.Navigation = true;// configuration Scheduler.Calendars.Add(cal);// adding to the page

AttachMiniCalendar add minicalendar icon to the header of the scheduler, this should work without additional settings. Please check the sample
s3.amazonaws.com/uploads.hipcha … inical.zip