javascript resource scheduler view

This is the default Scheduler view.

Rows are defined using Resources property.

JavaScript

Example:

<div id="dp"></div>
<script type="text/javascript">
  var dp = new DayPilot.Scheduler("dp");
  dp.viewType = "Resources";
  /// ...
  dp.init();
</script>

Tutorials

ASP.NET WebForms

<DayPilot:DayPilotScheduler runat="server"
  ...
  ViewType="Resources"
/>

Tutorials

ASP.NET MVC

@Html.DayPilotScheduler("dps", new DayPilotSchedulerConfig {
  BackendUrl = ResolveUrl("~/Scheduler/Backend"),
  ...
  ViewType = DayPilot.Web.Mvc.Enums.Scheduler.ViewType.Resources
})

Tutorials