ValidationEvent
Enum
Specifies when form validation should be triggered for input components.
Definition
Fields
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.
C#
Change = 1
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.
C#
Input = 0