VSN-2373 : Defining feature of exluding user from accessing a specific document & folder.
Merge Request Description
Validation: Required Fields
This validation ensures that mandatory input fields are not left empty before form submission. It prevents incomplete data from being processed and enforces the presence of essential information.
Validation: Email Format
This validation checks that email addresses entered by users follow the correct format. It ensures that the input contains a valid structure with an "@" symbol and domain, reducing the risk of invalid contact information.
Validation: Numeric Input
This validation enforces that certain fields accept only numeric values. It prevents users from entering non-numeric characters where numbers are expected, ensuring data consistency and correctness.
Validation: String Length
This validation restricts the length of text inputs to a defined minimum and maximum. It ensures that user-provided data is neither too short nor excessively long, maintaining usability and preventing errors.
Validation: Prevent Default Form Submission
This validation intercepts the default form submission behavior when inputs are invalid. It ensures that the form is not submitted until all validations pass, improving user experience and data integrity.
Validation: Cross-Field Consistency
This validation checks relationships between multiple fields to ensure logical consistency. For example, it verifies that confirmation fields match their originals or that dependent values align correctly.
Validation: Error Messaging
This validation provides clear feedback to users when inputs fail validation. It displays descriptive error messages that guide users to correct their mistakes, improving usability and reducing frustration.
Closes VSN-2373