Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by John on Nov 23, 2009 00:29
open dhtmlx forum
Weeknumbers in the schedular

Is it possible to add weeknumbers in the schedular (in the monthview and weekview)?
Answer posted by Alex (support) on Nov 23, 2009 06:28

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();

}