New to Telerik UI for BlazorStart a free 30-day trial

Definition

Constructors

C#
protected SchedulerViewBase()

Methods

C#
public void Dispose()

Implements: IDisposable.Dispose()

C#
protected override void OnInitialized()

Overrides: ComponentBase.OnInitialized()

Properties

Customizes the visual appearance of appointments within this specific view. When set, overrides the main Scheduler's ItemTemplate for this view only. Receives the appointment data object as context for view-specific appointment rendering.

C#
[Parameter]
public RenderFragment<object> ItemTemplate { get; set; }

Customizes the visual appearance of resource group headers when resource grouping is enabled. Receives resource group context including resource data, color, and grouping information. Applied when SchedulerGroupSettings is configured with resource grouping.

C#
[Parameter]
public RenderFragment<SchedulerResourceGroupHeaderTemplateContext> SchedulerResourceGroupHeaderTemplate { get; set; }

Customizes the visual appearance of time slot cells within this specific view. Provides context including date, time, and resource information for each rendered slot. Use this to add custom content, highlight special dates, or apply conditional styling per slot.

C#
[Parameter]
public RenderFragment<SchedulerSlotTemplateContext> SlotTemplate { get; set; }