Multiple Day Views

Is it possible to have multiple DayViews with different filters? I keep getting errors depending on how i implement it, or the last DayView i add is the one that shows. I would also be open to using a CustomView if you could provide the script. I’m not sure how to go from the CustomView work-week script to a day. Thanks.

Using ASP.Net MVC 3

Hi,

Unfortunately scheduler can’t have multiple day,week or month views.

It can be done following way:
client:

scheduler.attachEvent("onTemplatesReady", function () { //day view scheduler.date.customday_start = scheduler.date.day_start; scheduler.templates.customday_date = scheduler.templates.day_date; scheduler.templates.customday_scale_date = scheduler.templates.day_scale_date; scheduler.date.add_customday = function (date, inc) { return scheduler.date.add(date, inc * 1, "day"); } scheduler.date.get_customday_end = function (date) { return scheduler.date.add(date, 1, "day"); } });server: public class CustomDayView : SchedulerView { public CustomDayView() : base() { Name = ViewType = "customday"; } }