Add minicalendar with jquery integration

Hi,
I load the scheduler with jquery integration like that :
In Javascript :

$(function(){
    
$(".myscheduler").dhx_scheduler({
xml_date:"%Y-%m-%d %H:%i",
date:new Date(),
mode:"week"
});

// all my config
});

and in html :

 <div class="myscheduler" style="width:100%; height:500px;"></div>

so how to add the minicalendar in that case.

If you want to define a calendar’s placeholder in the scheduler’s header, you need to place the full html snippet on the page

[code]

 
 
 
[/code]

jQuery init support both - init from empty div and init from full html markup.

Thanks a lot Stanislas.
it works.