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

Provides data for the OnUpdate event when form field values change. Contains information about which field was modified and the current state of the form model.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class FormUpdateEventArgs : EventArgs

Inheritance: objectEventArgsFormUpdateEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public FormUpdateEventArgs()

Properties

Gets or sets the name of the form field that was changed, corresponding to the property name in the model. Use this to identify which specific field triggered the update event for conditional logic or field-specific processing. The field name matches the Field property and the model's property name.

C#
public string FieldName { get; set; }

Gets or sets the complete form model object containing all current field values including the recent change. Use this to access the updated model state, perform validation, trigger dependent field updates, or implement auto-save functionality. The model reflects the current state of all form fields after the change has been applied.

C#
public object Model { get; set; }