Class
FormUpdateEventArgs

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:

cs-api-definition
public class FormUpdateEventArgs : EventArgs

Inheritance: objectEventArgsFormUpdateEventArgs

Inherited Members EventArgs.Empty

Constructors

FormUpdateEventArgs()

Declaration

cs-api-definition
public FormUpdateEventArgs()

Properties

FieldName

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.

Declaration

cs-api-definition
public string FieldName { get; set; }

Property Value

string

Model

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.

Declaration

cs-api-definition
public object Model { get; set; }

Property Value

object