Click here to Skip to main content
15,886,689 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am new to devexpress,I am trying to implement asp.net mvc scheduler.I have defined the scheduler like
C#
@Html.DevExpress().Scheduler(
    settings => {
        settings.Name = "scheduler";
        settings.CallbackRouteValues = new { Controller = "Scheduler", Action =  "GroupingPartial" };
        settings.ActiveViewType = SchedulerViewType.Day;
        settings.Start = new DateTime(2010, 7, 13);
        settings.Width = Unit.Percentage(100);
        settings.Views.DayView.ResourcesPerPage = 2;

        settings.Views.WorkWeekView.ResourcesPerPage = 2;

        settings.Views.WeekView.ResourcesPerPage = 2;

        settings.Views.MonthView.ResourcesPerPage = 2;

        settings.Views.TimelineView.ResourcesPerPage = 2;

        settings.GroupType = (SchedulerGroupType)Session["GroupType"];

        settings.Storage.Resources.Assign(SchedulerDemoHelper.DefaultResourceStorage);

    }).Bind(Model.Appointments, Model.Resources).GetHtml()

how to apply theme for the scheduler?Is there any additional code added to web.config file?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900