ClassFormUpdateEventArgs
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:
public class FormUpdateEventArgs : EventArgs
Inheritance: objectEventArgsFormUpdateEventArgs
Inherited Members
Constructors
FormUpdateEventArgs()
Declaration
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.
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.