ValidationSettings
Class
Definition
Namespace:Telerik.Blazor.Components.Common.Grid
Assembly:Telerik.Blazor.dll
Syntax:
C#
public abstract class ValidationSettings : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender
Inheritance: objectComponentBaseValidationSettings
Derived Classes:
Implements:
Inherited Members
Constructors
C#
protected ValidationSettings()
Methods
Properties
Controls whether automatic validation is active for form fields and editing operations. Set to false to disable built-in validation entirely. Default value is true (validation enabled).
C#
[Parameter]
public bool Enabled { get; set; }
Provides a custom validation component to replace the default DataAnnotationsValidator. Use this to integrate third-party validation libraries. Children: Custom validator component that implements validation logic.
C#
[Parameter]
public RenderFragment ValidatorTemplate { get; set; }