Skip to main content
Version: 3.5

ValidationRule

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents a validation rule within an instance of the Validation extender.

public class ValidationRule

Constructors

Instance memberValidationRule()

Initializes a new instance of a ValidationRule implementation.

Instance memberValidationRule(name, invalidMessage)

Initializes a new instance of a ValidationRule implementation using the specified name and optional invalidMessage .

NameTypeDescription
nameStringName of the validation rule.
invalidMessageStringError message related to the validation rule.

Properties

Instance memberEnabled

Boolean: Enables or disables the validation rule. Since 3.2.7 (Default: True)

Instance memberErrorProvider

IErrorProvider: Returns or sets the control that displays the InvalidMessage string. (Default: null)

Instance memberInvalidMessage

String: Returns or sets the error message for the validation rule. (Default: null)

Instance memberName

String: Returns or sets the name of the validation rule. (Default: null)

Methods

Instance memberOnControlCreated(control)

Invoked when the control associated with the validation rule is created and ready to be rendered on the client.

ParameterTypeDescription
controlControlControl being created.

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.

Instance memberOnValidated(control)

Invoke after the control has been validated successfully.

ParameterTypeDescription
controlControlControl that validated successfully.

Instance memberOnValidating(control)

Invoked when the control is being validated.

ParameterTypeDescription
controlControlControl being validated.

Returns: Boolean. true if the validation is successful; otherwise false.

Inherited By

NameDescription
RegexValidationRuleValidates the control using a custom Regex expression.
RequiredValidationRuleValidates controls that cannot be left empty.
TelephoneValidationRuleValidates telephone numbers.
DecimalValidationRuleValidates decimal values.
CurrencyValidationRuleValidates currency values.
IntegerValidationRuleValidates long integer values.
EmailValidationRuleValidates email addresses.