EnumValidationEvent
Specifies when form validation should be triggered for input components.
Definition
Namespace:Telerik.Blazor
Assembly:Telerik.Blazor.dll
Syntax:
public enum ValidationEvent
Fields
Change
Triggers validation when the user confirms their input by pressing Enter or when the component loses focus. Provides validation feedback after user completes their input, less intrusive than Input mode. Use for most scenarios where you want validation without interrupting the user's typing flow. Balances user experience with timely validation feedback.
Input
Triggers validation immediately as the user types or modifies content. Provides real-time feedback but may be intrusive for long content entry. Use for critical fields that need immediate validation or short input fields. Results in frequent validation calls during active editing.