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

The event arguments for the OnUpdate event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class SchedulerUpdateEventArgs : EventArgs

Inheritance: objectEventArgsSchedulerUpdateEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public SchedulerUpdateEventArgs()
C#
public SchedulerUpdateEventArgs(object updatedItem)
Parameters:updatedItemobject

Properties

Expresses whether the user wants to update a single occurrence or the entire series of a recurring appointment.

C#
public SchedulerRecurrenceEditMode EditMode { get; set; }
Remarks:

Occurrence - the user wants to update a single occurrence of a recurring appointment. Series - the user wants to update the entire series of a recurring appointment.

The appointment model that the user updated.

C#
public object Item { get; set; }