Weeknumbers in the schedular

Is it possible to add weeknumbers in the schedular (in the monthview and weekview)?


It is possible by changing remplates.


template to header in week view:


scheduler.templates.week_scale_date = function(date){


var res = /some your code here/;
return res;
}



the current template for month view:


scheduler.templates.month_day = function(date){


return date.getDate();

}