Is it possible to show Thrusday as first day of week?

Dear All,

I'm wondering is that possible to show Thrusday as first day of week. For example on sample code ..\dhtmlxScheduler_v30\samples\02_customization07_custom_view.html, we have tab like Work Week. When user click on the Work Week, we want to show Thrusday to Wed. as the week. There is a business need for that and wondering how to implement that. Thank you in advance for your help

With regards
GK

You need to define method

scheduler.date.week_start = function(date){
var new_date = some(date);
return new_date;
}

Method will receive a some date, and will need to return date which points to first day of related week

Above solution will affect week view only.