Hi,
the week view can’t be configured that way, so you’ll need implement a custom view.
On the server side you add a class inherited from SchedulerView with arbitrary name and value of ViewType property:
[code]using DHTMLX.Scheduler.Controls;
public class CustomWeek : SchedulerView
{
public CustomWeek() : base()
{
Name = ViewType = “custom_week”;
}
} [/code]
On the client side you specify the behaviour of the view as described in this article docs.dhtmlx.com/scheduler/custom_views.html
After that your custom view can be added to DHXScheduler.Views configuration
Check the ready example, class declaration is in App_Code/CustomWeek.cs and JS is in Scripts/scheduler-view.js CustomWeekView.zip (245 KB)
Get a guaranteed answer from DHTMLX technical support team
under the most suitable support plan