Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Wisej.Web.Validation
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Adds a common validation system to any Control.
You can drop this extender on any design surface to add validation rules to any control at design time using the added ValidationRules property. You can also use this component at runtime and invoke the SetValidationRules method directly. Validation rules are executed in the order they are added to the array. When a validation rule fails validation, the next rules are NOT executed and the Cancel property of the control's Validating event is set to true.
Initializes a new instance of the Validation class.
Initializes a new instance of the Validation class attached to a IContainer implementation.
Name | Type | Description |
---|---|---|
IErrorProvider: Associates an IErrorProvider to the Validation extender."/> (Default: null
)
When this property is null (default), the validation extender sets the InvalidMessage property of the control being validated to the corresponding InvalidMessage when a validation rule fails. Otherwise it invokes the SetError method passing the control that failed validation and the corresponding InvalidMessage string. You may use an instance of ErrorProvider to display error icons and messages. But you can also implement the IErrorProvider interface in a custom class and manage errors however required by the application. A third option is to assign a Label (or any Control that implements IErrorProvider) to the ErrorProvider property to let the validation extender set the text property to the corresponding InvalidMessage string.
The Label (or any Control that implements IErrorProvider) is automatically hidden (Visible is set to false) when there is no error message to display.
Object: Returns or sets the object that contains programmer-supplied data associated with the Validation extender. (Default: null
)
Returns a value indicating whether a control can be extended.
Returns: Boolean. true if the control can be extended; otherwise, false.
Removes all validation rules.
Returns the collection of ValidationRule associated with the specified control .
Returns: ValidationRule[]. Array of the validation rules associated to the control .
Fires the Validated event.
Fires the Validating event.
Removes all the validation rules from the control .
Sets the list of validation rules associated with the specified control .
ValidationEventHandler Fired after any control associated to the Validation extender has been successfully validated.
You can add an handler to this event and handle the successful validation of all the controls that have a set of validation rules in one place.
ValidationEventHandler Fired when the any control associated to the Validation extender is being validated.
You can add an handler to this event and handle the validation of all the controls that have a set of validation rules in one place.
Wisej.Web.EmailValidationRule
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Validates email addresses.
Initializes a new instance of .
: Returns or sets a list of invalid domains: i.e. "dropmail.com", "protonmail.com". (Default: null
)
Validates the control using the validation rule.
Wisej.Web.TelephoneValidationRule
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Validates telephone numbers.
Initializes a new instance of the class.
: Returns or sets whether to format the value of the control after validation. (Default: False
)
Invoked after the control has been successfully validated.
Validates the control using the validation rule.
Wisej.Web.IntegerValidationRule
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Validates long integer values.
Initializes a new instance of the class.
: Returns or sets the maximum value; or null for no maximum. (Default: null
)
Validates the control using the validation rule.
Wisej.Web.DecimalValidationRule
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Validates decimal values.
Initializes a new instance of the class.
: Returns or sets the required number of decimal digits; or null to allow any number of decimals. (Default: null
)
Invoked after the control has been successfully validated.
Validates the control using the validation rule.
Wisej.Web.CurrencyValidationRule
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Validates currency values.
Initializes a new instance of the class.
: Returns or sets the currency symbol to validate. The default is null to use the current . (Default: null
)
Invoked after the control has been successfully validated.
Validates the control using the validation rule.
Wisej.Web.RegexValidationRule
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Validates the control using a custom expression.
Initializes a new instance of .
: Returns or sets the filter property (i.e. ) property on editable controls that support filtering of the keys as they are typed. (Default: null
)
Invoked when the control associated with the validation rule is created and ready to be rendered on the client.
Validates the control using the validation rule.
Wisej.Web.RequiredValidationRule
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Validates controls that cannot be left empty.
Initializes a new instance of the class.
: Returns or sets the required minimum number of characters. (Default: null
)
Validates the control using the validation rule.
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
: Returns or sets the name of the validation rule. (Default: "Email"
)
: Returns or sets whether the control can be empty or its required to have a value. (Default: False
)
: Returns or sets a list of valid domains: i.e. "mycompany.com", "gmail.com", "hotmail.com". (Default: null
)
Parameter | Type | Description |
---|
Returns: . true if the validation is successful; otherwise false.
: Returns or sets the character mask used to validate the telephone number. It is based on the implementation. (Default: ""
)
: Returns the used to validate the control's text.
: Returns or sets the name of the validation rule. (Default: "Telephone"
)
: Returns or sets whether the control can be empty or its required to have a value. (Default: False
)
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Returns: . true if the validation is successful; otherwise false.
: Returns or sets the minimum value; or null for no minimum. (Default: null
)
: Returns or sets the name of the validation rule. (Default: "Integer"
)
: Returns or sets whether the control can be empty or its required to have a value. (Default: False
)
Parameter | Type | Description |
---|
Returns: . true if the validation is successful; otherwise false.
: Returns or sets whether to format the value of the control after validation. (Default: False
)
: Returns or sets the maximum value; or null for no maximum. (Default: null
)
: Returns or sets the minimum value; or null for no minimum. (Default: null
)
: Returns or sets the name of the validation rule. (Default: "Decimal"
)
: Returns or sets whether the control can be empty or its required to have a value. (Default: False
)
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Returns: . true if the validation is successful; otherwise false.
: Returns or sets the required number of decimal digits; or null to use the current . (Default: null
)
: Returns or sets whether to format the value of the control after validation. (Default: False
)
: Returns or sets the maximum value; or null for no maximum. (Default: null
)
: Returns or sets the minimum value; or null for no minimum. (Default: null
)
: Returns or sets the name of the validation rule. (Default: "Currency"
)
: Returns or sets whether the control can be empty or its required to have a value. (Default: False
)
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Returns: . true if the validation is successful; otherwise false.
: Returns or sets the name of the validation rule. (Default: "Regex"
)
: Returns or sets the used to validate the control. (Default: null
)
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|
Returns: . true if the validation is successful; otherwise false.
: Returns or sets the name of the validation rule. (Default: "Required"
)
: Returns or sets whether the control can be empty or its required to have a value. (Default: True
)
: Returns or sets whether empty controls with spaces are considered empty and fail validation. (Default: True
)
Parameter | Type | Description |
---|
Returns: . true if the validation is successful; otherwise false.
extendee
The control to be extended.
control
Control associated with the validation rules to retrieve.
e
e
control
Control to remove from the Validation extender.
control
Control associated with the validation rules.
rules
List of validation rules to enforce on the specified control .
control |
control |
control |
control |
control |
control |
control |
control |
control | Control being created. |
control |
control |
container
An IContainer that represents the container of the Validation extender.
Wisej.Web.ValidationRule
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Represents a validation rule within an instance of the Validation extender.
Initializes a new instance of a ValidationRule implementation.
Initializes a new instance of a ValidationRule implementation using the specified name and optional invalidMessage .
Name | Type | Description |
---|---|---|
Boolean: Enables or disables the validation rule. Since 3.2.7 (Default: True
)
IErrorProvider: Returns or sets the control that displays the InvalidMessage string. (Default: null
)
String: Returns or sets the error message for the validation rule. (Default: null
)
String: Returns or sets the name of the validation rule. (Default: null
)
Invoked when the control associated with the validation rule is created and ready to be rendered on the client.
The ControlCreated event is fired when the control is made visible the first time and it's ready to be displayed on the client browser; it's not fire when the control is constructed. Use this overload if your custom ValidationRule needs to read or set properties on the control itself. i.e. set the Filter, or format strings.
Invoke after the control has been validated successfully.
Invoked when the control is being validated.
Returns: Boolean. true if the validation is successful; otherwise false.
Wisej.Web.ValidationEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Provides data for the Validating event handlers.
Control: Control being validated.
String: Message to return when validation fails.
ValidationRule[]: Rules associated to the Control being validated.
Name | Description |
---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Name | Description |
---|---|
control
Control being created.
control
Control that validated successfully.
control
Control being validated.
Validates the control using a custom Regex expression.
Validates controls that cannot be left empty.
Validates telephone numbers.
Validates decimal values.
Validates currency values.
Validates long integer values.
Validates email addresses.
name
Name of the validation rule.
invalidMessage
Error message related to the validation rule.
Represents the method that will handle the Validating event.
Wisej.Web.ValidationEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Represents the method that will handle the Validating event.
Name | Type | Description |
---|---|---|
Name | Description |
---|---|
sender
The source of the event.
e
A ValidationEventArgs that contains the event data.
Fired when the any control associated to the Validation extender is being validated.
Fired after any control associated to the Validation extender has been successfully validated.