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

Definition

Constructors

C#
protected ValidationSettings()

Methods

C#
protected override Task OnInitializedAsync()
Returns:

Task

Overrides: ComponentBase.OnInitializedAsync()

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; }