What Changed
We renamed the SchedulerDayOfWeekHeaderCellInfo.Resources
property to SchedulerDayOfWeekHeaderCellInfo.Resource.
Reasons for Change
This change was made to improve clarity. The Resources
part of the previous property name incorrectly indicated that it accepts a collection of resource items.
Impact on Existing Apps
This change affects your application if it uses the mentioned property.
Razor<DxScheduler StartDate="@DateTime.Today"
DataStorage="@DataStorage"
GroupType="@SchedulerGroupType.Resource">
<Views>
<DxSchedulerMonthView>
<DayOfWeekHeaderCellTemplate>
<div style="width: 100%;">
<b>@context.Resources.Caption</b>
</div>
</DayOfWeekHeaderCellTemplate>
</DxSchedulerMonthView>
</Views>
</DxScheduler>
How to Upgrade Existing Apps
Replace the SchedulerDayOfWeekHeaderCellInfo.Resources
property with SchedulerDayOfWeekHeaderCellInfo.Resource
.
Razor<DxScheduler StartDate="@DateTime.Today"
DataStorage="@DataStorage"
GroupType="@SchedulerGroupType.Resource">
<Views>
<DxSchedulerMonthView>
<DayOfWeekHeaderCellTemplate>
<div style="width: 100%;">
<b>@context.Resource.Caption</b>
</div>
</DayOfWeekHeaderCellTemplate>
</DxSchedulerMonthView>
</Views>
</DxScheduler>